blob: cc9e9fd0714eff17d52c81cc794a42036b75cfe9 (
plain)
1 # Description: ALSA Plugins contains plugins for various audio libraries and sound servers.
2 # URL: http://www.alsa-project.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: alsa-lib
5 # Optional: ffmpeg speex jack libsamplerate
6
7 name=alsa-plugins
8 version=1.1.8
9 release=1
10 source=(ftp://ftp.alsa-project.org/pub/plugins/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19 }
|