summaryrefslogtreecommitdiff
path: root/Ports/SDL_sound
diff options
context:
space:
mode:
authorGrigoris Pavlakis <grigpavl@ece.auth.gr>2022-06-13 13:34:09 +0300
committerLinus Groh <mail@linusgroh.de>2022-06-20 23:24:45 +0100
commitc98a27593168d6f23c810681e6e28b248682e31d (patch)
treebe8503f94fd06bb3f4e43bd5ee3075035d0b5cbf /Ports/SDL_sound
parentde31f51bbe3a180ceb8698c17bc54e0d420830ef (diff)
downloadserenity-c98a27593168d6f23c810681e6e28b248682e31d.zip
Ports: Add SDL_sound for SDL 1.2
Diffstat (limited to 'Ports/SDL_sound')
-rwxr-xr-xPorts/SDL_sound/package.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ports/SDL_sound/package.sh b/Ports/SDL_sound/package.sh
new file mode 100755
index 0000000000..e5412556a2
--- /dev/null
+++ b/Ports/SDL_sound/package.sh
@@ -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")