18 lines
408 B
Plaintext
18 lines
408 B
Plaintext
# Description: Software construction tool.
|
|
# URL: http://www.scons.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python3
|
|
|
|
name=scons
|
|
version=3.1.2
|
|
release=1
|
|
source=(https://download.sourceforge.net/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --root=$PKG --optimize=1 \
|
|
--install-data=/usr/share
|
|
}
|