blob: e4a1330862e8463cb7123c2da757be6304b22a1c (
plain)
1 # Description: A sample multi-channel audio mixer library.
2 # URL: http://www.libsdl.org/projects/SDL_mixer/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Simone Rota, sip at crux dot nu
5 # Depends on: libvorbis smpeg libmikmod flac
6
7 name=sdl_mixer
8 version=1.2.12
9 release=1
10 source=(http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-$version.tar.gz)
11
12 build() {
13 cd SDL_mixer-$version
14 sed -i -e 's|/usr/local/lib/timidity|/usr/share/timidity|g' timidity/config.h
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18 }
|