032a0f8df0
musl patch: we disable backtrace functionality unconditionally. Add pyliblo to depends to fix the carla-control program.
55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
# Template file for 'Carla'
|
|
pkgname=Carla
|
|
version=2.4.1
|
|
revision=1
|
|
archs="x86_64* i686* aarch64* arm*"
|
|
build_style=gnu-makefile
|
|
pycompile_dirs="usr/share/carla"
|
|
hostmakedepends="pkg-config python3 python3-PyQt5-devel-tools which"
|
|
makedepends="python3-PyQt5 libmagic file-devel libsndfile-devel
|
|
liblo-devel alsa-lib-devel pulseaudio-devel libX11-devel gtk+3-devel
|
|
gtk+-devel qt5-devel fluidsynth-devel fftw-devel zlib-devel
|
|
python3-rdflib"
|
|
depends="python3 python3-PyQt5 python3-PyQt5-svg pyliblo which"
|
|
short_desc="Audio plugin host"
|
|
maintainer="nutcase84 <nutcase84@protonmail.com>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://kxstudio.linuxaudio.org/Applications:Carla"
|
|
distfiles="https://github.com/falkTX/Carla/archive/v${version}.tar.gz"
|
|
checksum=bbb188a672ea8871b11648d36770ba013497d03407ca9c73ed68429016f7536f
|
|
python_version=3
|
|
|
|
case $XBPS_TARGET_MACHINE in
|
|
x86_64* | i686*);;
|
|
*) make_build_args+=" NOOPT=true"
|
|
make_install_args+=" NOOPT=true";;
|
|
esac
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" Carla-devel"
|
|
fi
|
|
|
|
pre_build() {
|
|
vsed -e '1,1i#include <unistd.h>' \
|
|
-i source/modules/water/text/CharacterFunctions.h
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
vsed -i -e 's#\./carla-lv2-export#/usr/bin/carla-lv2-export#g' \
|
|
source/plugin/Makefile
|
|
fi
|
|
|
|
make ${make_build_args} features
|
|
}
|
|
|
|
post_install() {
|
|
vbin bin/carla-lv2-export
|
|
}
|
|
|
|
Carla-devel_package() {
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin/carla-lv2-export
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/include
|
|
}
|
|
}
|