mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
25 lines
563 B
Bash
Executable File
25 lines
563 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='SDL_sound'
|
|
version='1.0.3'
|
|
useconfigure='true'
|
|
use_fresh_config_sub='true'
|
|
depends=(
|
|
'libmikmod'
|
|
'libogg'
|
|
'sdl12-compat'
|
|
)
|
|
files=(
|
|
"https://www.icculus.org/SDL_sound/downloads/${port}-${version}.tar.gz#3999fd0bbb485289a52be14b2f68b571cb84e380cc43387eadf778f64c79e6df"
|
|
)
|
|
configopts=(
|
|
'--enable-flac=no'
|
|
'--enable-modplug=no'
|
|
'--enable-physfs=no'
|
|
'--enable-smpeg=no'
|
|
'--enable-speex=no'
|
|
"--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
|
)
|
|
makeopts+=(
|
|
'LDFLAGS=-lm'
|
|
)
|