forked from ports/contrib
19 lines
502 B
Plaintext
19 lines
502 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=2
|
|
source=(http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-$version.tar.gz)
|
|
|
|
build() {
|
|
cd SDL2_mixer-$version
|
|
CONFIG_SHELL=/bin/bash ./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|