[arch-commits] Commit in audaspace/repos (2 files)

Felix Yan felixonmars at archlinux.org
Mon Nov 4 06:04:33 UTC 2019


    Date: Monday, November 4, 2019 @ 06:04:33
  Author: felixonmars
Revision: 523289

archrelease: copy trunk to community-staging-x86_64

Added:
  audaspace/repos/community-staging-x86_64/
  audaspace/repos/community-staging-x86_64/PKGBUILD
    (from rev 523288, audaspace/trunk/PKGBUILD)

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

Copied: audaspace/repos/community-staging-x86_64/PKGBUILD (from rev 523288, audaspace/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2019-11-04 06:04:33 UTC (rev 523289)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+pkgname=audaspace
+pkgver=1.3.0
+pkgrel=4
+pkgdesc="A high level and feature rich audio library written in C++ with language bindings"
+arch=("x86_64")
+url="http://audaspace.github.io/"
+license=('APACHE')
+depends=('ffmpeg' 'openal' 'sdl2' 'libsndfile' 'jack' 'fftw')
+makedepends=('cmake' 'python' 'python-setuptools' 'python-numpy' 'git')
+optdepends=('python: python language bindings'
+            'python-numpy: python language bindings')
+source=("git+https://github.com/neXyon/audaspace.git#commit=9b38605")
+md5sums=('SKIP')
+
+build() {
+	cd "${pkgname}"
+
+    mkdir build
+    cd build
+
+	cmake .. \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DWITH_PYTHON=1 \
+        -DWITH_JACK=1 \
+        -DDEFAULT_PLUGIN_PATH=/usr/share/audaspace/plugins
+
+	make
+}
+
+package() {
+	cd "${pkgname}"
+
+    cd build
+
+	make DESTDIR="${pkgdir}/" install
+}



More information about the arch-commits mailing list