blob: 0e05cc1c5ae9ff854242f8732102fa71ae9a92d2 (
plain)
1 # Description: ALSA libraries
2 # URL: http://www.alsa-project.org
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4 # Depends on: python
5
6 name=alsa-lib
7 version=1.0.23
8 release=1
9 source=(ftp://ftp.alsa-project.org/pub/lib/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|