smlinux/base/rpi-userland/rpi-userland.SMBuild
PktSurf 437ea7322b Added proper build functions in base/rpi-userland
Added licenses to net/{autossh,comgt,fcgiwrap,fail2ban,wpa_supplicant}
Fixed prefix, added code to backup and configure additional conf files in net/nginx
Function call reordering and some cleanups in net/php
Replaced old init script with runit script in net/privoxy
2023-03-30 21:15:29 +05:30

49 lines
1.4 KiB
Text
Executable file

app=rpi-userland
version=20200603
build=1sml
homepage="https://github.com/raspberrypi/userland"
desc="Common raspberry-pi userland utilities"
requires="musl"
prepbuilddir() {
compileonlyfor aarch64
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
# this package does not like execinfo header, and will fail to link against the execinfo
# library, so we temporarily rename the header
[ -e /include/execinfo.h ] && mv /include/execinfo.h /include/execinfo.h.bak
sed -i -e 's/sudo //' buildme
}
build() {
./buildme --aarch64 "$pkg"
# The build script does not exit with a status 0, so we do a couple of file checks ourselves
if ! [ -e $pkg/opt/vc/bin/dtmerge ] ; then
echo "Oops, compilation failed!"
exit 1
elif ! [ -e $pkg/opt/vc/bin/tvservice ]; then
echo "Oops, compilation failed!"
exit 1
fi
install -Dm 644 $srcdir/10-vchiq.rules $pkg/lib/udev/rules.d/10-vchiq.rules
install -Dm 755 $srcdir/rpi-userland.sh $pkg/etc/profile.d/rpi-userland.sh
# restore the execinfo header to its original name
[ -e /include/execinfo.h.bak ] && mv /include/execinfo.h.bak /include/execinfo.h
cp LICENCE $pkgdocs/
mkfinalpkg
}
sha512sums="
dbfe0e6bc50eeb745e66bbfdb5bc6f4774ed51d99f334a3604f73df997bf1a4be4ee8f3e703022f128640a28fac8b2cf7366ad563e07d2afdef67ea4de747f2c rpi-userland-20200603.tar.lz
"