blob: 52660c3845b49ce9c22849e4002343af7e5dda32 (
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.10
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
14 make
15 make DESTDIR=$PKG install
16 }
|