blob: d3b738d868991035ea6f7eecd2b0e6545ed1a868 (
plain)
1 # Description: ALSA OSS Emulation
2 # URL: http://www.alsa-project.org/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: alsa-lib
5
6 name=alsa-oss
7 version=1.1.8
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 }
|