17 lines
370 B
Plaintext
17 lines
370 B
Plaintext
# Description: A free implementation of OpenAL's ALUT standard
|
|
# URL: http://www.openal.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
# Depends on: openal
|
|
|
|
name=freealut
|
|
version=1.1.0
|
|
release=1
|
|
source=(http://www.openal.org/openal_webstf/downloads/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|