16 lines
339 B
Plaintext
16 lines
339 B
Plaintext
# Description: Software construction tool
|
|
# URL: http://www.scons.org
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: python
|
|
|
|
name=scons
|
|
version=0.97
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
python setup.py install --prefix=/usr --root=$PKG
|
|
}
|