blob: cf15b8e558b50c7a508d01d8383986ae7022958f (
plain)
1 # Description: A sample multi-channel audio mixer library.
2 # URL: https://github.com/libsdl-org/SDL_mixer
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libvorbis libmodplug flac libsdl2 mpg123
5
6 name=sdl2_mixer
7 version=2.6.2
8 release=1
9 source=(https://github.com/libsdl-org/SDL_mixer/releases/download/release-$version/SDL2_mixer-$version.tar.gz)
10
11 build() {
12 cd SDL2_mixer-$version
13
14 CONFIG_SHELL=/bin/bash ./configure \
15 --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19 }
|