blob: 4d0fd8ddd20b06b0792abf2c07abae517c406e38 (
plain)
1 # Description: ALSA OSS Emulation
2 # URL: http://www.alsa-project.org/
3 # Maintainer: Matt Housh, jaeger at morpheus dot net
4 # Depends on: alsa-lib
5
6 name=alsa-oss
7 version=1.0.25
8 release=1
9 source=(ftp://ftp.alsa-project.org/pub/oss-lib/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr --mandir=/usr/man
14 make
15 make DESTDIR=$PKG install
16 }
|