blob: acb1bbfbb1c7af049a987f74c919405b5fb0aaf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Librairie pour mélangeur audio multi-canal.
# URL: http://www.libsdl.org/projects/SDL_mixer/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: thierry at hispeed.ch
# Depends on: libvorbis, smpeg
# Run on: libvorbis,smpeg
name=sdl_mixer
version=1.2.11
release=1
source=(http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-$version.tar.gz)
build() {
cd SDL_mixer-$version
sed -i -e 's|/usr/local/lib/timidity|/usr/share/timidity|g' timidity/config.h
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|