2016-02-17 04:00:20 +00:00
|
|
|
PACKAGE_VERSION=2.0.1
|
2016-02-19 04:12:07 +00:00
|
|
|
|
2016-02-24 03:34:01 +00:00
|
|
|
dependencies SDL2
|
2016-02-19 04:12:07 +00:00
|
|
|
check_pkgconfig SDL2_mixer
|
|
|
|
fetch_download http://www.libsdl.org/projects/SDL_mixer/release/${PACKAGE_NAME}-${PACKAGE_VERSION}.tar.gz
|
2016-02-17 04:00:20 +00:00
|
|
|
|
|
|
|
# Disable dependencies on external libraries for sound file formats:
|
2016-02-19 04:12:07 +00:00
|
|
|
config_options="
|
2016-02-17 04:00:20 +00:00
|
|
|
--disable-music-mod --disable-music-mp3
|
|
|
|
--disable-music-flac-shared --disable-music-ogg-shared
|
|
|
|
"
|
|
|
|
|
|
|
|
# ...except ones we have installed:
|
|
|
|
if ! chocpkg installed flac; then
|
2016-02-19 04:12:07 +00:00
|
|
|
config_options+=" --disable-music-flac"
|
2016-02-17 04:00:20 +00:00
|
|
|
fi
|
|
|
|
if ! chocpkg installed libogg; then
|
2016-02-19 04:12:07 +00:00
|
|
|
config_options+=" --disable-music-ogg"
|
2016-02-17 04:00:20 +00:00
|
|
|
fi
|
|
|
|
|
2016-02-19 04:12:07 +00:00
|
|
|
build_autotools $config_options
|
|
|
|
|