2021-03-08 12:15:35 +00:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2022-08-21 14:00:49 +00:00
|
|
|
port='SDL2_mixer'
|
|
|
|
version='2.6.2'
|
|
|
|
useconfigure='true'
|
|
|
|
files="https://github.com/libsdl-org/SDL_mixer/releases/download/release-${version}/SDL2_mixer-${version}.tar.gz SDL2_mixer-${version}.tar.gz 8cdea810366decba3c33d32b8071bccd1c309b2499a54946d92b48e6922aa371"
|
|
|
|
auth_type='sha256'
|
2022-09-01 12:40:00 +00:00
|
|
|
depends=("libmodplug" "libmpg123" "libvorbis" "SDL2" "timidity")
|
2021-03-08 12:15:35 +00:00
|
|
|
|
|
|
|
configure() {
|
2022-01-07 22:24:04 +00:00
|
|
|
export LIBS="-L${SERENITY_INSTALL_ROOT}/usr/local/lib"
|
2021-03-08 12:15:35 +00:00
|
|
|
run ./configure \
|
2021-03-11 18:50:44 +00:00
|
|
|
--host="${SERENITY_ARCH}-pc-serenity" \
|
2021-04-20 15:42:04 +00:00
|
|
|
--with-sdl-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
2021-12-24 13:37:05 +00:00
|
|
|
--enable-music-opus=false \
|
|
|
|
--enable-music-opus-shared=false \
|
2022-06-03 14:20:26 +00:00
|
|
|
--disable-static \
|
|
|
|
--enable-shared \
|
2021-03-08 12:15:35 +00:00
|
|
|
EXTRA_LDFLAGS="-lgui -lgfx -lipc -lcore -lcompression"
|
|
|
|
}
|
|
|
|
|
2022-01-07 22:24:04 +00:00
|
|
|
post_configure() {
|
|
|
|
unset LIBS
|
|
|
|
}
|
|
|
|
|
2021-03-08 12:15:35 +00:00
|
|
|
build() {
|
|
|
|
run make -k
|
|
|
|
}
|