blob: 27ee4bf30e3138e4ec2a5bbef5ce70b350ce0236 (
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 # Packager: Vitaly Sinilin, vs at kp4 dot ru
5 # Depends on: alsa-lib
6 # Nice to have: ffmpeg speex jack libsamplerate
7
8 name=alsa-plugins
9 version=1.0.29
10 release=1
11 source=(ftp://ftp.alsa-project.org/pub/plugins/$name-$version.tar.bz2)
12
13 build() {
14 cd $name-$version
15
16 ./configure --prefix=/usr
17
18 make
19 make DESTDIR=$PKG install
20 }
|