2018-11-29 16:19:27 +01:00
|
|
|
# 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
|
2019-01-30 00:48:13 +01:00
|
|
|
release=2
|
2018-11-29 16:19:27 +01:00
|
|
|
source=(http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd SDL2_mixer-$version
|
2019-01-30 00:48:13 +01:00
|
|
|
CONFIG_SHELL=/bin/bash ./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-static
|
2018-11-29 16:19:27 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|