ladybird/Ports/SDL2_mixer/package.sh

29 lines
821 B
Bash
Raw Normal View History

2021-03-08 15:15:35 +03:00
#!/usr/bin/env -S bash ../.port_include.sh
2022-08-21 17:00:49 +03:00
port='SDL2_mixer'
version='2.6.2'
useconfigure='true'
2023-07-10 14:10:29 +03:00
files=(
"https://github.com/libsdl-org/SDL_mixer/releases/download/release-${version}/SDL2_mixer-${version}.tar.gz 8cdea810366decba3c33d32b8071bccd1c309b2499a54946d92b48e6922aa371"
2023-07-10 14:10:29 +03:00
)
depends=("libmodplug" "libmpg123" "libvorbis" "SDL2" "timidity")
2021-03-08 15:15:35 +03:00
configure() {
export LIBS="-L${SERENITY_INSTALL_ROOT}/usr/local/lib"
2021-03-08 15:15:35 +03:00
run ./configure \
--host="${SERENITY_ARCH}-pc-serenity" \
--with-sdl-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
--enable-music-opus=false \
--enable-music-opus-shared=false \
--disable-static \
--enable-shared \
2021-03-08 15:15:35 +03:00
EXTRA_LDFLAGS="-lgui -lgfx -lipc -lcore -lcompression"
}
post_configure() {
unset LIBS
}
2021-03-08 15:15:35 +03:00
build() {
run make -k
}