[arch-commits] Commit in (4 files)

Sven-Hendrik Haase svenstaro at archlinux.org
Sun Aug 9 08:00:41 UTC 2015


    Date: Sunday, August 9, 2015 @ 10:00:41
  Author: svenstaro
Revision: 138136

Adding audaspace for next blender version

Added:
  audaspace/
  audaspace/repos/
  audaspace/trunk/
  audaspace/trunk/PKGBUILD

----------+
 PKGBUILD |   34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

Added: audaspace/trunk/PKGBUILD
===================================================================
--- audaspace/trunk/PKGBUILD	                        (rev 0)
+++ audaspace/trunk/PKGBUILD	2015-08-09 08:00:41 UTC (rev 138136)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+pkgname=audaspace
+pkgver=1.0rc1
+_pkgver=1.0-rc1
+pkgrel=1
+pkgdesc="A high level and feature rich audio library written in C++ with language bindings"
+arch=("x86_64" "i686")
+url="http://audaspace.github.io/"
+license=('APACHE')
+depends=('ffmpeg' 'openal' 'sdl2' 'libsndfile')
+makedepends=('cmake' 'python')
+optdepends=()
+source=("https://github.com/audaspace/audaspace/archive/${_pkgver}.tar.gz")
+md5sums=('efd48bbc0b75c3c2326b6d9b83077fd4')
+
+build() {
+	cd "${pkgname}-${_pkgver}"
+
+    mkdir build
+    cd build
+
+	cmake .. \
+        -DCMAKE_INSTALL_PREFIX=/usr
+
+	make
+}
+
+package() {
+	cd "${pkgname}-${_pkgver}"
+
+    cd build
+
+	make DESTDIR="${pkgdir}/" install
+}



More information about the arch-commits mailing list