From bb579fb859c0f784a568b6766e89fca96e8030d0 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Wed, 7 Feb 2018 03:29:04 +0000 Subject: [PATCH] added community/x42-plugins --- community/x42-plugins/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 community/x42-plugins/PKGBUILD diff --git a/community/x42-plugins/PKGBUILD b/community/x42-plugins/PKGBUILD new file mode 100644 index 000000000..d16c8da60 --- /dev/null +++ b/community/x42-plugins/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: David Runge +# Contributor: Lieven Moors + +# ALARM: Kevin Mihelich +# - export OPTIMIZATIONS to override Makefiles without x86isms + +pkgname=x42-plugins +pkgver=20170428 +pkgrel=3 +pkgdesc="Collection of LV2 plugins" +arch=('x86_64') +url="https://github.com/x42/x42-plugins" +license=('GPL') +depends=('jack' 'libglvnd' 'liblo' 'libltc' 'pango' 'zita-convolver') +makedepends=('gtk2' 'ftgl' 'ttf-freefont' 'lv2') +groups=('lv2-plugins') +source=("http://gareus.org/misc/${pkgname}/${pkgname}-${pkgver}.tar.xz") +sha512sums=('9a648733610861f7dca120f63876af79f93fe4c23356b93768cc6a76367f28e24dd010858cdc0a1ab42182df8536131fd891c24591c11a354170eb2da2afa3d2') + +build() { + cd "${pkgname}-${pkgver}" + export OPTIMIZATIONS="-ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only" + FONTFILE=/usr/share/fonts/TTF/FreeSansBold.ttf make +} + +package() { + cd "${pkgname}-${pkgver}" + make install DESTDIR="$pkgdir/" PREFIX=/usr +} + +# vim:set ts=2 sw=2 et: +