mirror of
https://github.com/chocolate-doom/chocpkg.git
synced 2024-11-14 00:41:07 +00:00
40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
description "SDL audio mixing and music library"
|
|
dependencies SDL2
|
|
check_pkgconfig SDL2_mixer
|
|
|
|
variant stable fetch_download \
|
|
https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.4.tar.gz \
|
|
b4cf5a382c061cd75081cf246c2aa2f9df8db04bdda8dcdc6b6cca55bede2419
|
|
variant latest fetch_hg https://hg.libsdl.org/SDL_mixer
|
|
|
|
# Disable dependencies on external libraries for sound file formats:
|
|
config_options="
|
|
--disable-music-mod --disable-music-flac-shared
|
|
--disable-music-ogg-shared
|
|
--disable-music-mp3-mpg123-shared
|
|
"
|
|
|
|
# ...except ones we have installed:
|
|
if ! chocpkg installed ${PACKAGE_TYPE}:flac; then
|
|
config_options+=" --disable-music-flac"
|
|
fi
|
|
if ! chocpkg installed ${PACKAGE_TYPE}:libogg; then
|
|
config_options+=" --disable-music-ogg"
|
|
fi
|
|
|
|
# FluidSynth, if we have it.
|
|
if chocpkg installed ${PACKAGE_TYPE}:fluidsynth; then
|
|
config_options+=" --enable-music-midi-fluidsynth"
|
|
else
|
|
config_options+=" --disable-music-midi-fluidsynth"
|
|
fi
|
|
|
|
if chocpkg installed ${PACKAGE_TYPE}:libmpg123; then
|
|
config_options+=" --enable-music-mp3 --disable-music-mp3-mad-gpl --enable-music-mp3-mpg123"
|
|
elif chocpkg installed ${PACKAGE_TYPE}:libmad; then
|
|
config_options+=" --enable-music-mp3 --enable-music-mp3-mad-gpl"
|
|
else
|
|
config_options+=" --disable-music-mp3 --disable-music-mp3-mad-gpl"
|
|
fi
|
|
|
|
build_autotools $config_options
|