summaryrefslogtreecommitdiff
path: root/pcr/helm
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-09-09 03:16:46 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-09-22 16:15:01 -0300
commit7ad615021705dfdbebcd527dc94bc33ba72b43f1 (patch)
tree317a793fc92efeab0cb1c97ac49d3109a647bc0d /pcr/helm
parent0143c98bc22f8713cec5778c618c4bcebf12638e (diff)
helm: add new package to [pcr] -> https://labs.parabola.nu/issues/793
Diffstat (limited to 'pcr/helm')
-rw-r--r--pcr/helm/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/pcr/helm/PKGBUILD b/pcr/helm/PKGBUILD
new file mode 100644
index 000000000..8dd250ac3
--- /dev/null
+++ b/pcr/helm/PKGBUILD
@@ -0,0 +1,33 @@
+# Maintainer: André Silva <emulatorman@parabola.nu>
+
+pkgname=helm
+pkgver=0.4.1
+pkgrel=1
+pkgdesc="A cross-platform, polyphonic synthesizer LV2 and VST plugin"
+arch=('i686' 'x86_64')
+url="http://tytel.org/helm/"
+license=('GPL')
+groups=('lv2-plugins' 'vst-plugins')
+depends=('alsa-lib' 'mesa' 'mesa-libgl' 'lv2' 'freetype2' 'jack' 'libxrandr' 'libxinerama' 'libxcursor')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mtytel/helm/archive/v${pkgver}.tar.gz"
+ 'http://www.steinberg.net/sdk_downloads/vstsdk360_22_11_2013_build_100.zip')
+md5sums=('ffc3657235f1d97f9634a309281d9ec9'
+ '1ac422ebb4aa2e86061278412c347b55')
+
+prepare() {
+ cd "$srcdir/${pkgname}-${pkgver}/builds/linux/VST"
+ sed -i -e "s|-I ~/srcs/VST3\\\\ SDK|-I $srcdir/VST3\\\\ SDK|" Makefile
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make PREFIX="/usr" all vst
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="$pkgdir" install
+ install -D builds/linux/VST/build/helm.so "$pkgdir/usr/lib/vst/helm.so"
+}