blob: ede4ac588f80051e1004ab16355821cceab8e18a (
plain)
1 # Description: A library for decoding various sound formats.
2 # URL: http://icculus.org/SDL_sound/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Aaron Marks, nymacro at gmail dot com
5 # Depends on: flac libmikmod libmodplug libvorbis physfs smpeg speex
6
7 name=sdl_sound
8 version=1.0.3
9 release=1
10 source=(http://icculus.org/SDL_sound/downloads/SDL_sound-$version.tar.gz)
11
12 build() {
13 cd SDL_sound-$version
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|