78 lines
1.8 KiB
Bash
78 lines
1.8 KiB
Bash
# Template file for 'rpi-userland'
|
|
_githash="97bc8180ad682b004ea224d1db7b8e108eda4397"
|
|
_gitshort="${_githash:0:7}"
|
|
|
|
pkgname=rpi-userland
|
|
version=20210623
|
|
revision=1
|
|
build_style=cmake
|
|
hostmakedepends="pkg-config"
|
|
configure_args="-DCMAKE_INSTALL_RPATH=\$ORIGIN/../lib"
|
|
short_desc="Raspberry Pi GPU userland libraries and utilities (git ${_gitshort})"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/raspberrypi/userland"
|
|
distfiles="https://github.com/raspberrypi/userland/archive/${_githash}.tar.gz"
|
|
checksum=d67def03931215f41b741aed5a3a1bc2bd62fa33f5cc14692e9a4d65f2e0ea27
|
|
|
|
LDFLAGS="-Wl,--no-as-needed"
|
|
archs="armv6l* armv7l* aarch64*"
|
|
|
|
shlib_provides="
|
|
libEGL.so
|
|
libGLESv2.so
|
|
libOpenVG.so
|
|
libWFC.so
|
|
libbcm_host.so
|
|
libbrcmEGL.so
|
|
libbrcmGLESv2.so
|
|
libbrcmOpenVG.so
|
|
libbrcmWFC.so
|
|
libcontainers.so
|
|
libdebug_sym.so
|
|
libdtovl.so
|
|
libmmal.so
|
|
libmmal_components.so
|
|
libmmal_core.so
|
|
libmmal_util.so
|
|
libmmal_vc_client.so
|
|
libopenmaxil.so
|
|
libvchiq_arm.so
|
|
libvcos.so
|
|
libvcsm.so"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
aarch64*) configure_args+=" -DARM64=on" ;;
|
|
esac
|
|
|
|
pre_configure() {
|
|
for f in $(find ${wrksrc} -type f -name CMakeLists.txt); do
|
|
sed -i 's,-Werror,,g' $f
|
|
done
|
|
}
|
|
post_install() {
|
|
vlicense LICENCE
|
|
rm -rf ${DESTDIR}/etc
|
|
rm -rf ${DESTDIR}/opt/vc/share
|
|
|
|
vmkdir usr/share
|
|
mv ${DESTDIR}/opt/vc/man ${DESTDIR}/usr/share
|
|
|
|
vmkdir usr/bin
|
|
ln -sfr ${DESTDIR}/opt/vc/bin/tvservice ${DESTDIR}/usr/bin
|
|
ln -sfr ${DESTDIR}/opt/vc/bin/vcgencmd ${DESTDIR}/usr/bin
|
|
}
|
|
|
|
rpi-userland-devel_package() {
|
|
provides="rpi-firmware-pcfiles-1_1"
|
|
replaces="rpi-firmware-pcfiles>=0"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove opt/vc/include
|
|
vmove opt/vc/src
|
|
vmove opt/vc/lib/*.a
|
|
vmove opt/vc/lib/pkgconfig
|
|
}
|
|
}
|