PKGBUILDs/community/carla/PKGBUILD

57 lines
1.5 KiB
Bash
Raw Normal View History

2020-04-12 14:33:21 +00:00
# Maintainer: David Runge <dvzrv@archlinux.org>
2019-03-03 00:12:08 +00:00
# Contributor: Llewelyn Trahaearn <WoefulDerelict [at] GMail [dot] com>
# Contributor: falkTX <falktx [at] gmail [dot] com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - make with NOOPT=true
_name=Carla
pkgname=carla
2021-10-15 22:24:37 +00:00
pkgver=2.4.1
2021-12-16 15:12:13 +00:00
pkgrel=2
2019-03-03 00:12:08 +00:00
pkgdesc="Audio Plugin Host"
2021-12-16 15:12:13 +00:00
arch=(x86_64)
2019-03-03 00:12:08 +00:00
url="https://kxstudio.linuxaudio.org/Applications:Carla"
2021-12-16 15:12:13 +00:00
license=(GPL2)
groups=(pro-audio)
depends=(alsa-lib gcc-libs glibc libglvnd libx11 python-pyqt5 python-pyliblo
python-rdflib qt5-base qt5-svg)
makedepends=(file fluidsynth freetype2 git libsndfile liblo libpulse qt5-tools)
2021-04-15 12:21:37 +00:00
optdepends=(
2021-10-15 22:24:37 +00:00
'jack: for using carla with JACK'
2021-04-15 12:21:37 +00:00
'lv2-host: for the LV2 plugin'
'vst-host: for the VST plugin'
)
2021-12-16 15:12:13 +00:00
provides=(dssi-host ladspa-host lv2-host vst-host vst3-host)
source=(
"git+https://github.com/falkTX/${pkgname}#tag=v${pkgver}?signed"
)
2021-04-15 12:21:37 +00:00
sha512sums=('SKIP')
b2sums=('SKIP')
validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0') # falkTX <falktx@falktx.com>
2019-03-03 00:12:08 +00:00
2021-12-16 15:12:13 +00:00
prepare() {
cd "${pkgname}"
# fix python 3.10 related crashes
git cherry-pick -n 91720f6ddcfd00ebf9f0a6613099f53922426726
}
2019-03-03 00:12:08 +00:00
build() {
2021-04-15 12:21:37 +00:00
cd "${pkgname}"
2019-03-03 00:12:08 +00:00
make NOOPT=true features
2020-09-26 22:02:11 +00:00
make NOOPT=true
2019-03-03 00:12:08 +00:00
}
package() {
2021-12-16 15:12:13 +00:00
depends+=(libasound.so libfluidsynth.so libfreetype.so liblo.so libmagic.so
libpulse.so libsndfile.so)
2021-04-15 12:21:37 +00:00
cd "${pkgname}"
2019-03-03 00:12:08 +00:00
make NOOPT=true DEFAULT_QT=5 \
DESTDIR="${pkgdir}/" \
PREFIX=/usr \
install
install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
}
# vim:set ts=2 sw=2 et: