90 lines
2.4 KiB
Text
90 lines
2.4 KiB
Text
# Template file for 'SDL'
|
|
pkgname=SDL
|
|
version=1.2.15
|
|
revision=7
|
|
patch_args="-Np1"
|
|
build_style=gnu-configure
|
|
configure_args="--enable-alsa --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"
|
|
short_desc="Simple Directmedia Layer"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.libsdl.org/"
|
|
license="LGPL-2.1"
|
|
distfiles="http://www.libsdl.org/release/SDL-$version.tar.gz"
|
|
checksum=d6d316a793e5e348155f0dd93b979798933fb98aa1edebcc108829d6474aad00
|
|
|
|
hostmakedepends="pkg-config nasm"
|
|
makedepends="alsa-lib-devel"
|
|
|
|
# Package build options
|
|
build_options="x11 opengl aalib pulseaudio"
|
|
|
|
desc_option_x11="Enable support for X11 video output"
|
|
desc_option_opengl="Enable support for OpenGL support"
|
|
desc_option_aalib="Enable support for aalib video output"
|
|
desc_option_pulseaudio="Enable support for pulseaudio autio output"
|
|
|
|
build_options_default="x11"
|
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
# Enable OpenGL and pulseaudio on x86.
|
|
build_options_default+=" opengl pulseaudio"
|
|
fi
|
|
|
|
if [ "$build_option_x11" ]; then
|
|
configure_args+=" --enable-video-x11-xrandr --enable-video-x11-vm --enable-video-x11-xv"
|
|
makedepends+=" libXrandr-devel"
|
|
else
|
|
configure_args+=" --without-x"
|
|
fi
|
|
|
|
if [ "$build_option_opengl" ]; then
|
|
configure_args+=" --enable-video-opengl"
|
|
makedepends+=" glu-devel"
|
|
else
|
|
configure_args+=" --disable-video-opengl"
|
|
fi
|
|
|
|
if [ "$build_option_aalib" ]; then
|
|
configure_args+=" --enable-video-aalib"
|
|
makedepends+=" aalib-devel"
|
|
else
|
|
configure_args+=" --disable-video-aalib"
|
|
fi
|
|
|
|
if [ "$build_option_pulseaudio" ]; then
|
|
configure_args+=" --enable-pulseaudio"
|
|
makedepends+=" pulseaudio-devel"
|
|
else
|
|
configure_args+=" --disable-pulseaudio"
|
|
fi
|
|
|
|
if [ "$build_option_opengl" ]; then
|
|
# libGL.so.1 is dynamically loaded with dlopen.
|
|
depends="libGL"
|
|
fi
|
|
|
|
SDL-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="alsa-lib-devel SDL>=${version}"
|
|
if [ "$build_option_x11" ]; then
|
|
depends+=" libXrandr-devel"
|
|
fi
|
|
if [ "$build_option_opengl" ]; then
|
|
depends+=" glu-devel"
|
|
fi
|
|
if [ "$build_option_pulseaudio" ]; then
|
|
depends+=" pulseaudio-devel"
|
|
fi
|
|
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share
|
|
}
|
|
}
|