1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # Template file for 'SDL'
- pkgname=SDL
- version=1.2.15
- revision=12
- build_style=gnu-configure
- configure_args="--enable-alsa --enable-sndio --disable-esd --disable-rpath
- --enable-clock_gettime --disable-nas --disable-arts --disable-x11-shared
- --disable-alsa-shared --disable-pulseaudio-shared --disable-video-dga
- --disable-osmesa-shared $(vopt_enable aalib video-aalib)
- $(vopt_enable pulseaudio) $(vopt_enable opengl video-opengl)
- $(vopt_if x11 '-enable-video-x11-xrandr --enable-video-x11-vm --enable-video-x11-xv')"
- hostmakedepends="pkg-config nasm"
- makedepends="alsa-lib-devel sndio-devel $(vopt_if x11 libXrandr-devel)
- $(vopt_if aalib aalib-devel) $(vopt_if opengl glu-devel)
- $(vopt_if pulseaudio pulseaudio-devel)"
- short_desc="Simple Directmedia Layer"
- maintainer="Orphaned <orphan@voidlinux.org>"
- license="LGPL-2.1-only"
- homepage="http://www.libsdl.org/"
- distfiles="http://www.libsdl.org/release/SDL-${version}.tar.gz"
- checksum=d6d316a793e5e348155f0dd93b979798933fb98aa1edebcc108829d6474aad00
- # Package build options
- build_options="x11 opengl aalib pulseaudio"
- build_options_default="x11"
- case "$XBPS_TARGET_MACHINE" in
- i686*|x86_64*|ppc*)
- # Enable OpenGL and pulseaudio on x86 and ppc.
- build_options_default+=" opengl pulseaudio"
- ;;
- esac
- if [ "$build_option_opengl" ]; then
- # libGL.so.1 is dynamically loaded with dlopen.
- shlib_requires="libGL.so.1"
- depends="virtual?libGL"
- fi
- # Liberation
- post_patch() {
- # The command below has been taken from:
- # https://git.parabola.nu/abslibre.git/tree/libre/sdl/PKGBUILD
- rm -v src/video/fbcon/riva_mmio.h
- }
- SDL-devel_package() {
- short_desc+=" - development files"
- depends="${makedepends} SDL>=${version}_${revision}"
- pkg_install() {
- vmove usr/bin
- vmove usr/include
- vmove usr/lib/pkgconfig
- vmove "usr/lib/*.a"
- vmove "usr/lib/*.so"
- vmove usr/share
- }
- }
|