3b48183232
Make rpaths relative to allow proper function inside, e.g., a multilib root; also, drop unneded dynamic linker configs (which are a bad idea on musl anyway).
71 lines
1.6 KiB
Bash
71 lines
1.6 KiB
Bash
# Template file for 'rpi-userland'
|
|
_githash="093b30bbc2fd083d68cc3ee07e6e555c6e592d11"
|
|
_gitshort="${_githash:0:7}"
|
|
|
|
pkgname=rpi-userland
|
|
version=20210110
|
|
revision=1
|
|
wrksrc="userland-${_githash}"
|
|
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=b23fc0849d282a8ba27b821cb8f63fa2ebc2ae8aa3cba0664ce3809ea814507b
|
|
|
|
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
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|