[arch-commits] Commit in artyfx/repos (community-x86_64 community-x86_64/PKGBUILD)
David Runge
dvzrv at archlinux.org
Thu Apr 5 19:32:57 UTC 2018
Date: Thursday, April 5, 2018 @ 19:32:56
Author: dvzrv
Revision: 314484
archrelease: copy trunk to community-x86_64
Added:
artyfx/repos/community-x86_64/
artyfx/repos/community-x86_64/PKGBUILD
(from rev 314483, artyfx/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: artyfx/repos/community-x86_64/PKGBUILD (from rev 314483, artyfx/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2018-04-05 19:32:56 UTC (rev 314484)
@@ -0,0 +1,36 @@
+# Maintainer: David Runge <dave at sleepmap.de>
+pkgname=artyfx
+pkgver=1.3
+pkgrel=2
+pkgdesc="A plugin bundle of artistic real-time audio effects"
+arch=('x86_64')
+url="http://openavproductions.com/artyfx/"
+license=('GPL2')
+groups=('lv2-plugins' 'pro-audio')
+depends=('cairo' 'libsndfile')
+makedepends=('cmake' 'lv2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openAVproductions/openAV-${pkgname}/archive/release-${pkgver}.tar.gz")
+sha512sums=('51931d0497c91150db738ffe7199e1cd3a86d43d34b371b9719b8d0b504bebf3b9cf14e20d299081b0482f51ef7a6e825e8bf0c832b0caf3bc4a8f8221990a97')
+
+prepare() {
+ mv -v "openAV-ArtyFX-release-${pkgver}" "${pkgname}-${pkgver}"
+ cd "$pkgname-$pkgver"
+ mkdir build
+}
+
+build() {
+ cd "$pkgname-$pkgver/build"
+ cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DAVTK_SNDFILE_SUPPORT=true \
+ ..
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver/build"
+ make DESTDIR="$pkgdir/" install
+ # docs
+ install -vDm 644 ../{CHANGELOG,README.md} \
+ -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
More information about the arch-commits
mailing list