smpeg2: unify rpi build options, fix linker paths
This commit is contained in:
parent
7d77b71993
commit
bfa51a6c7c
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'smpeg2'
|
||||
pkgname=smpeg2
|
||||
version=2.0.0
|
||||
revision=3
|
||||
revision=4
|
||||
build_style=gnu-configure
|
||||
makedepends="SDL2-devel"
|
||||
short_desc="SDL2 MPEG Player Library"
|
||||
|
@ -12,24 +12,18 @@ distfiles="https://www.libsdl.org/projects/smpeg/release/smpeg2-${version}.tar.g
|
|||
checksum=979a65b211744a44fa641a9b6e4d64e64a12ff703ae776bafe3c4c4cd85494b3
|
||||
|
||||
# Package build options
|
||||
build_options="gles"
|
||||
build_options="rpi"
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
arm*)
|
||||
# Enable OpenGL/ES on rpi platforms
|
||||
build_options_default="gles"
|
||||
;;
|
||||
# Enable OpenGL/ES on rpi platforms
|
||||
armv[67]*) build_options_default="rpi" ;;
|
||||
esac
|
||||
|
||||
|
||||
if [ "$build_option_gles" ]; then
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
armv[67]*)
|
||||
# RaspberryPi, use Videocore IV
|
||||
makedepends+=" rpi-userland-devel"
|
||||
LDFLAGS="-L${XBPS_CROSS_BASE}/opt/vc/lib -lbcm_host"
|
||||
;;
|
||||
esac
|
||||
if [ "$build_option_rpi" ]; then
|
||||
# Use Videocore IV on Raspberry Pi
|
||||
makedepends+=" rpi-userland-devel"
|
||||
LDFLAGS="-L${XBPS_CROSS_BASE}/opt/vc/lib -Wl,-rpath=/opt/vc/lib -lbcm_host"
|
||||
fi
|
||||
|
||||
smpeg2-devel_package() {
|
||||
|
|
Loading…
Reference in New Issue