ladybird/Ports/SDL2_mixer/package.sh

35 lines
861 B
Bash
Raw Normal View History

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.3'
2022-08-21 14:00:49 +00:00
useconfigure='true'
2023-07-10 11:10:29 +00:00
files=(
"https://github.com/libsdl-org/SDL_mixer/releases/download/release-${version}/SDL2_mixer-${version}.tar.gz#7a6ba86a478648ce617e3a5e9277181bc67f7ce9876605eea6affd4a0d6eea8f"
2023-07-10 11:10:29 +00:00
)
depends=(
'libmodplug'
'libmpg123'
'libvorbis'
'SDL2'
'timidity'
)
2021-03-08 12:15:35 +00:00
configure() {
export LIBS="-L${SERENITY_INSTALL_ROOT}/usr/local/lib"
2021-03-08 12:15:35 +00: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 \
EXTRA_LDFLAGS='-lgui -lgfx -lipc -lcore -lcoreminimal -lcompression'
2021-03-08 12:15:35 +00:00
}
post_configure() {
unset LIBS
}
2021-03-08 12:15:35 +00:00
build() {
run make -k
}