contrib/freealut/Pkgfile

21 lines
447 B
Plaintext
Raw Normal View History

2023-08-18 20:00:51 +02:00
# Description: A free implementation of OpenAL's ALUT standard
# URL: https://www.openal.org/
# Maintainer: unmaintained
2008-02-19 14:23:55 +01:00
# Depends on: openal
name=freealut
version=1.1.0
release=1
2023-08-18 20:00:51 +02:00
source=(https://pkgs.fedoraproject.org/repo/pkgs/freealut/freealut-1.1.0.tar.gz/e089b28a0267faabdb6c079ee173664a/$name-$version.tar.gz)
2008-02-19 14:23:55 +01:00
build() {
2023-08-18 20:00:51 +02:00
cd freealut-$version
2008-02-19 14:23:55 +01:00
2023-08-18 20:00:51 +02:00
./configure \
--prefix=/usr \
--disable-static
2008-02-19 14:23:55 +01:00
2023-08-18 20:00:51 +02:00
make
make DESTDIR=$PKG install
2008-02-19 14:23:55 +01:00
}