1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:37:36 +00:00

Ports: Add SDL_sound for SDL 1.2

This commit is contained in:
Grigoris Pavlakis 2022-06-13 13:34:09 +03:00 committed by Linus Groh
parent de31f51bbe
commit c98a275931
2 changed files with 15 additions and 0 deletions

14
Ports/SDL_sound/package.sh Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='SDL_sound'
version='1.0.3'
useconfigure='true'
use_fresh_config_sub='true'
depends=("sdl12-compat" "libmikmod")
files="https://www.icculus.org/SDL_sound/downloads/${port}-${version}.tar.gz ${port}-${version}.tar.gz 3999fd0bbb485289a52be14b2f68b571cb84e380cc43387eadf778f64c79e6df"
auth_type='sha256'
configopts=(
"--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
"--enable-ogg=no"
"--enable-modplug=no"
)
makeopts=("LDFLAGS=-lm")