17 lines
492 B
Plaintext
17 lines
492 B
Plaintext
# Description: SCons, Açık Kaynaklı bir yazılım geliştirme aracı, yani yeni nesil bir yapı aracıdır.
|
||
# URL: http://scons.org
|
||
# Packager: milisarge
|
||
# 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
|
||
}
|