diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2008-02-11 21:46:12 +1100 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2008-02-11 21:46:12 +1100 |
commit | a5296441b551c5ebb5c0086522c1ecda057f3776 (patch) | |
tree | 5a0887af0ddba32d6d5db7d0a505c68cb1fa3a9e /sdl_mixer | |
parent | 89aabafaf6e46065b6e0a5ed887fd29c5cb35bb0 (diff) | |
download | contrib-a5296441b551c5ebb5c0086522c1ecda057f3776.tar.gz contrib-a5296441b551c5ebb5c0086522c1ecda057f3776.tar.xz |
sdl_mixer: picked up port from opt
Diffstat (limited to 'sdl_mixer')
-rw-r--r-- | sdl_mixer/.footprint | 10 | ||||
-rw-r--r-- | sdl_mixer/.md5sum | 1 | ||||
-rw-r--r-- | sdl_mixer/Pkgfile | 19 |
3 files changed, 30 insertions, 0 deletions
diff --git a/sdl_mixer/.footprint b/sdl_mixer/.footprint new file mode 100644 index 000000000..362a2e695 --- /dev/null +++ b/sdl_mixer/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/SDL/ +-rw-r--r-- root/root usr/include/SDL/SDL_mixer.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libSDL_mixer-1.2.so.0 -> libSDL_mixer-1.2.so.0.2.6 +-rwxr-xr-x root/root usr/lib/libSDL_mixer-1.2.so.0.2.6 +-rw-r--r-- root/root usr/lib/libSDL_mixer.a +-rwxr-xr-x root/root usr/lib/libSDL_mixer.la +lrwxrwxrwx root/root usr/lib/libSDL_mixer.so -> libSDL_mixer-1.2.so.0.2.6 diff --git a/sdl_mixer/.md5sum b/sdl_mixer/.md5sum new file mode 100644 index 000000000..d5129bcfb --- /dev/null +++ b/sdl_mixer/.md5sum @@ -0,0 +1 @@ +0b5b91015d0f3bd9597e094ba67c4d65 SDL_mixer-1.2.8.tar.gz diff --git a/sdl_mixer/Pkgfile b/sdl_mixer/Pkgfile new file mode 100644 index 000000000..8eb64d3dd --- /dev/null +++ b/sdl_mixer/Pkgfile @@ -0,0 +1,19 @@ +# Description: A sample multi-channel audio mixer library. +# URL: http://www.libsdl.org/projects/SDL_mixer/ +# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au +# Packager: Simone Rota, sip at crux dot nu +# Depends on: libvorbis smpeg + +name=sdl_mixer +version=1.2.8 +release=1 +source=(http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-$version.tar.gz) + +build() { + cd SDL_mixer-$version + sed -i -e 's|/usr/local/lib/timidity|/usr/share/timidity|g' timidity/config.h + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} + |