20 lines
491 B
Plaintext
20 lines
491 B
Plaintext
# Description: A sample multi-channel audio mixer library.
|
|
# URL: https://github.com/libsdl-org/SDL_mixer
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: libvorbis libmodplug flac libsdl2 mpg123
|
|
|
|
name=sdl2_mixer
|
|
version=2.6.2
|
|
release=1
|
|
source=(https://github.com/libsdl-org/SDL_mixer/releases/download/release-$version/SDL2_mixer-$version.tar.gz)
|
|
|
|
build() {
|
|
cd SDL2_mixer-$version
|
|
|
|
CONFIG_SHELL=/bin/bash ./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|