Enabled linking base/libpcap against libusb and libnl Added additional build options in base/libvpx and base/xkeyboard-config Disabled native language support in base/neon Removed vintage code from base/openssl,pkgtools, fixed code in base/pkgtools/installpkg Added spirv-headers, glslang-vulkan-sdk and libva to xorg Upgraded xorg/libpciaccess to 0.18.1 Added code to move stuff in /usr and elf binaries in /bin in several build files in base section
37 lines
824 B
Text
Executable file
37 lines
824 B
Text
Executable file
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=scons
|
|
version=3.1.2
|
|
build=1sml
|
|
homepage="http://www.scons.org/"
|
|
download="https://sourceforge.net/projects/scons/files/scons/$version/scons-$version.tar.gz"
|
|
desc="A software construction tool based on python"
|
|
requires="python3"
|
|
ignoreusr=1
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$pkg
|
|
|
|
mkdir $pkg/bin
|
|
mv $pkg/usr/bin/* $pkg/bin/
|
|
rmdir $pkg/usr/bin
|
|
|
|
mv $pkg/usr/man $pkg/usr/share/
|
|
|
|
cp LICENSE.txt $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
b16ac16d2185ff1866833675ef05d31d9ed691c7f169ea1f7b0c6c7ae1fc4039a139866a8da5faa5bcc39cd1103d39ea97b3fa043f91f49f953fbefc992acb79 scons-3.1.2.tar.lz
|
|
"
|