summaryrefslogtreecommitdiff
path: root/community/alure
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-04-12 10:53:36 +0000
committerroot <root@rshg047.dnsready.net>2011-04-12 10:53:36 +0000
commit28b5bbf3fee0627993658e096eadab71c2779912 (patch)
treeb799e892101aaaedafdcf1315c4def0ff6bdc1c4 /community/alure
parentcabd4a9c1f8304f0d57005b9f31231fc191c8778 (diff)
Tue Apr 12 10:53:36 UTC 2011
Diffstat (limited to 'community/alure')
-rw-r--r--community/alure/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/alure/PKGBUILD b/community/alure/PKGBUILD
new file mode 100644
index 000000000..daa057cef
--- /dev/null
+++ b/community/alure/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Markus Martin <markus@archwyrm.net>
+
+pkgname=alure
+pkgver=1.1
+pkgrel=2
+pkgdesc='Utility library to help manage common tasks with OpenAL applications.'
+arch=('i686' 'x86_64')
+url='http://kcat.strangesoft.net/alure.html'
+license=('LGPL')
+depends=('openal')
+makedepends=('cmake')
+optdepends=('sndfile: Uncompressed audio support'
+ 'vorbisfile: OGG Vorbis support'
+ 'flac: FLAC support')
+source=("http://kcat.strangesoft.net/alure-releases/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('a2f6934d3783c8478c460965a13e4e12')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}