[arch-commits] Commit in audaspace/repos (2 files)
Evangelos Foutras
foutrelis at gemini.archlinux.org
Fri Dec 3 00:45:49 UTC 2021
Date: Friday, December 3, 2021 @ 00:45:49
Author: foutrelis
Revision: 1064031
archrelease: copy trunk to community-staging-x86_64
Added:
audaspace/repos/community-staging-x86_64/
audaspace/repos/community-staging-x86_64/PKGBUILD
(from rev 1064028, audaspace/trunk/PKGBUILD)
----------+
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
Copied: audaspace/repos/community-staging-x86_64/PKGBUILD (from rev 1064028, audaspace/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-12-03 00:45:49 UTC (rev 1064031)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+pkgname=audaspace
+pkgver=1.3.0
+pkgrel=6
+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