18 lines
477 B
Plaintext
18 lines
477 B
Plaintext
|
# Description: A sample multi-channel audio mixer library.
|
||
|
# URL: http://www.libsdl.org/projects/SDL_mixer/
|
||
|
# Maintainer: Pedja, predivan at mts dot rs
|
||
|
# Depends on: libvorbis libmodplug flac libsdl2 mpg123
|
||
|
|
||
|
name=sdl2_mixer
|
||
|
version=2.0.4
|
||
|
release=1
|
||
|
source=(http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd SDL2_mixer-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-static
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|