2018-06-06 12:51:17 +00:00
|
|
|
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
|
2019-02-18 15:13:19 +00:00
|
|
|
# Contributor: David Runge <dave@sleepmap.de>
|
2014-01-20 19:50:59 +00:00
|
|
|
# Contributor: Ray Rashif <schiv@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2016-02-07 21:33:15 +00:00
|
|
|
# - remove --enable-sse from configure
|
2014-01-20 19:50:59 +00:00
|
|
|
|
|
|
|
pkgname=calf
|
2018-07-22 17:10:44 +00:00
|
|
|
pkgver=0.90.1
|
2019-02-18 15:13:19 +00:00
|
|
|
pkgrel=4
|
|
|
|
pkgdesc='LV2/DSSI/LADSPA plug-in suite and standalone Jack host'
|
2018-05-25 13:52:24 +00:00
|
|
|
arch=('x86_64')
|
2017-11-06 13:33:54 +00:00
|
|
|
url='https://calf-studio-gear.org/'
|
2018-07-22 17:10:44 +00:00
|
|
|
groups=('lv2-plugins' 'pro-audio')
|
2014-01-20 19:50:59 +00:00
|
|
|
license=('LGPL')
|
2019-02-18 15:13:19 +00:00
|
|
|
depends=('fftw' 'fluidsynth' 'gtk2')
|
|
|
|
makedepends=('lv2')
|
|
|
|
source=("https://calf-studio-gear.org/files/$pkgname-$pkgver.tar.gz"
|
|
|
|
"${pkgname}-fluidsynth2.patch::https://github.com/calf-studio-gear/${pkgname}/pull/203/commits/bba03b6080dc198f3513b5c29fe1ba4ff9e4aa59.patch")
|
|
|
|
sha256sums=('eb3ac2e48952cf68b2d87151ce4cf58ea1fcd4433629ff0628b6e4165fe9dc7e'
|
|
|
|
'adc6169efcb42cbdb67c117c81a88ec8a4314a8ef7744414b6bd5ea5f3fbf004')
|
2014-01-20 19:50:59 +00:00
|
|
|
|
2019-02-18 15:13:19 +00:00
|
|
|
prepare(){
|
2015-04-12 02:06:08 +00:00
|
|
|
cd "$pkgname-$pkgver"
|
2019-02-18 15:13:19 +00:00
|
|
|
# fluidsynth2 patch: https://github.com/calf-studio-gear/calf/issues/202
|
|
|
|
patch -Np1 -i ../${pkgname}-fluidsynth2.patch
|
|
|
|
# replace check for lv2core: https://github.com/calf-studio-gear/calf/issues/220
|
|
|
|
sed -e 's/lv2core >= 6/lv2 >= 1.14/g' -i configure.ac
|
|
|
|
autoreconf -vfi
|
|
|
|
}
|
2015-04-12 02:06:08 +00:00
|
|
|
|
2019-02-18 15:13:19 +00:00
|
|
|
build() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-lv2 \
|
|
|
|
--enable-experimental
|
2014-01-20 19:50:59 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2019-02-18 15:13:19 +00:00
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
2014-01-20 19:50:59 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 13:33:54 +00:00
|
|
|
# vim: ts=2 sw=2 et:
|