blob: b6162949018dec705b0a5cf801f511b0c846b273 (
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 # Depends on: libvorbis smpeg libmikmod flac
5
6 name=sdl_mixer
7 version=1.2.12
8 release=1
9 source=(https://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-$version.tar.gz)
10
11 build() {
12 cd SDL_mixer-$version
13 sed -i -e 's|/usr/local/lib/timidity|/usr/share/timidity|g' timidity/config.h
14 CONFIG_SHELL=/bin/bash ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|