Date: Wednesday, February 7, 2018 @ 13:17:11 Author: dvzrv Revision: 289984
archrelease: copy trunk to community-x86_64 Added: carla/repos/community-x86_64/ carla/repos/community-x86_64/PKGBUILD (from rev 289983, carla/trunk/PKGBUILD) ----------+ PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) Copied: carla/repos/community-x86_64/PKGBUILD (from rev 289983, carla/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2018-02-07 13:17:11 UTC (rev 289984) @@ -0,0 +1,37 @@ +# Maintainer: David Runge <d...@sleepmap.de> +# Contributor: Llewelyn Trahaearn <WoefulDerelict [at] GMail [dot] com> +# Contributor: falkTX <falktx [at] gmail [dot] com> + +_name=Carla +pkgname=carla +pkgver=1.9.8 +pkgrel=4 +pkgdesc="Audio Plugin Host" +arch=('x86_64') +url="https://kxstudio.sf.net/carla" +license=('GPL2') +depends=('file' 'fftw' 'fluidsynth' 'liblo' 'linuxsampler' 'mxml' 'projectm' 'python' 'qt5-base') +makedepends=('gtk2' 'gtk3' 'pulseaudio' 'python-pyliblo' 'python-pyqt5' 'python-rdflib' 'qt4' 'qt5-svg' 'zynaddsubfx') +optdepends=('gtk2: LV2 GTK2 UI support' + 'gtk3: LV2 GTK3 UI support' + 'python-pyliblo: OSC support' + 'python-rdflib: LADSPA-RDF support' + 'qt4: LV2 QT4 UI support' + 'zynaddsubfx: ZynAddSubFX banks' +) +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/falkTX/${pkgname}/archive/${pkgver}.tar.gz") +sha512sums=('0f801fdf7704bb3eb62e684134567df3e83a6c7dfad201479039158480f9fbc0c9a91bc007131091c29a87b4cbb2d831797c8c517de9c36399ec7348a8889f5d') + +build() { + cd "${_name}-${pkgver}" + make features + make DEFAULT_QT=5 +} + +package() { + cd "${_name}-${pkgver}" + make DEFAULT_QT=5 DESTDIR="${pkgdir}/" PREFIX=/usr install + install -vDm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" +} + +# vim:set ts=2 sw=2 et: