17 lines
348 B
Plaintext
17 lines
348 B
Plaintext
# Description: ALSA OSS Emulation
|
|
# URL: http://www.alsa-project.org
|
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
|
# Depends on: alsa-lib
|
|
|
|
name=alsa-oss
|
|
version=1.0.12
|
|
release=1
|
|
source=(ftp://ftp.alsa-project.org/pub/oss-lib/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|