Here's a working PKGBUILD for 1.0.0, no need for 0001-gcc13-fixes.patch
anymore AFAIK:
# Maintainer: éclairevoyant
# Contributor: Sefa Eyeoglu <contact at scrumplex dot net>
# Contributor: Alexandros Theodotou <alex at zrythm dot org>
pkgname=zrythm
_pkgver=1.0.0
pkgver="$_pkgver"
pkgrel=1
pkgdesc='Highly automated and intuitive digital audio workstation'
arch=(x86_64 i686)
url="https://www.zrythm.org"
license=(AGPL3)
depends=(
appstream
boost
breeze-icons
carla-git
chromaprint
dconf
fftw
fluidsynth
glib2-devel
graphene
graphviz
gtk4
gtksourceview5
guile
json-glib
libadwaita
libaudec
libbacktrace
libcyaml
libepoxy
libpanel
lilv
libxinerama
libxrandr
lsp-dsp-lib
pcre
portaudio
qt5-base
reproc
rtaudio
rtmidi
rubberband
sdl2
serd
sratom
vamp-plugin-sdk
xxhash
yyjson
zix
)
makedepends=(git meson cmake ruby-sass help2man sassc)
optdepends=('realtime-privileges: allow memory locking')
options=('debug')
source=("https://www.zrythm.org/releases/$pkgname-$_pkgver.tar.xz"{,.asc}
"git+https://github.com/drobilla/zix.git")
sha256sums=('d143a0a17066b50db8a6db875d2699c9e5b70f1bbe18db00fee034840144fede'
'cb5b56c3c9d7986d2ddcedf7fbe4c3c221fe352ae182cd20a59898daac044943'
'SKIP')
validpgpkeys=('48132384AD3DF7D86E254B83022EAE42313D70F3') # Alexandros Theodotou <alex@zrythm.org>
prepare() {
cd $pkgname-$_pkgver
# use our local clones
sed -i "s|https://github.com/drobilla/zix|$srcdir/zix|" "subprojects/zix.wrap"
meson subprojects download zix
}
build() {
cd $pkgname-$_pkgver
meson setup build --prefix=/usr \
--wrap-mode nofallback \
--force-fallback-for=zix-0 \
-Ddebug=true \
-Dmanpage=true \
-Dcheck_updates=false \
-Dcarla_binaries_dir=/usr/lib/carla \
-Dportaudio=enabled -Drtmidi=enabled -Drtaudio=enabled -Dsdl=enabled
ninja -C build
}
package() {
cd $pkgname-$_pkgver
install -vDm644 AUTHORS CONTRIBUTING.md \
CHANGELOG.md README.md THANKS TRANSLATORS \
-t "$pkgdir/usr/share/doc/$pkgname/"
meson install -C build --destdir="$pkgdir"
rm -rf "$pkgdir"{/usr/include/zix-0/,/usr/lib/pkgconfig/zix-0.pc}
}
Pinned Comments