17 lines
472 B
Plaintext
17 lines
472 B
Plaintext
# Description: SCons is a free tool construction allows replacement of make.
|
|
# URL: http://scons.org
|
|
# Packager: pierre at nutyx dot org
|
|
# Depends on: python
|
|
|
|
name=scons
|
|
version=2.4.1
|
|
release=1
|
|
|
|
source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
|
|
build ()
|
|
{
|
|
cd $name-$version
|
|
python2 setup.py install --standard-lib --prefix=/usr --install-data=/usr/share --root=$PKG --optimize=1;
|
|
install -D -m644 LICENSE.txt $PKG/usr/share/licenses/$name/LICENSE
|
|
}
|