opt/scons/Pkgfile

21 lines
526 B
Plaintext
Raw Normal View History

2012-06-23 12:29:02 +02:00
# Description: Software construction tool.
2020-07-10 15:30:11 +02:00
# URL: https://www.scons.org/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2020-07-10 15:30:11 +02:00
# Depends on: python3-setuptools
2006-02-23 16:26:10 +01:00
name=scons
2021-01-30 08:01:23 +01:00
version=4.1.0
2008-12-21 18:46:30 +01:00
release=1
2020-07-10 15:30:11 +02:00
source=(https://github.com/SCons/scons/archive/$version/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
2006-02-23 16:26:10 +01:00
cd $name-$version
2021-01-30 08:01:23 +01:00
# manpage install is completely broken
sed -i -e '/build\/doc\/man/d' setup.cfg
2020-02-02 01:41:29 +01:00
/usr/bin/python3 setup.py build
2021-01-30 08:01:23 +01:00
/usr/bin/python3 setup.py install --root=$PKG --skip-build --optimize=1 \
2018-01-31 09:34:18 +01:00
--install-data=/usr/share
2006-02-23 16:26:10 +01:00
}