2016-02-18 04:05:59 +00:00
|
|
|
PACKAGE_VERSION=2.0.4
|
2016-02-17 04:00:20 +00:00
|
|
|
PACKAGE_URL=http://www.libsdl.org/release/${PACKAGE_NAME}-${PACKAGE_VERSION}.tar.gz
|
|
|
|
PKGCONFIG_NAME=sdl2
|
|
|
|
|
|
|
|
# Many OS X systems have the Quartz X11 server installed, but
|
|
|
|
# we probably don't want to use it.
|
|
|
|
if [ $(uname) = "Darwin" ]; then
|
|
|
|
PACKAGE_CONFIGURE_OPTS=--disable-video-x11
|
|
|
|
fi
|
|
|
|
|
2016-02-18 04:03:42 +00:00
|
|
|
# When targeting Windows, we need to install the directx headers first.
|
|
|
|
if [ $(uname) = "Cygwin" ] || pattern_match "*mingw*" "$BUILD_HOST"; then
|
|
|
|
DEPENDENCIES="directx-devel"
|
2016-02-18 05:01:49 +00:00
|
|
|
PACKAGE_CONFIGURE_OPTS=--disable-directx
|
2016-02-18 04:03:42 +00:00
|
|
|
fi
|
|
|
|
|