blob: 201860fd7963d45f75b4205f2dbca4fab3b85b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: Alexandros Theodotou <alex@zrythm.org>
_pkgname=zrythm
pkgname=$_pkgname-git
pkgver=0.6.175
pkgrel=1
pkgdesc='a highly automated and intuitive digital audio workstation'
arch=('x86_64' 'i686')
url='https://git.zrythm.org/zrythm/zrythm'
license=('AGPL3')
depends=('gtk3' 'lv2' 'lilv' 'libx11' 'jack'
'libsndfile' 'libyaml' 'gettext'
'libsamplerate' 'alsa-lib'
'ladspa' 'fftw')
makedepends=('python' 'gettext' 'sed'
'meson' 'ninja' 'help2man' 'python-sphinx')
optdepends=('portaudio: portaudio backend'
'qt5-base: for embedding qt5 plugin UIs')
conflicts=("$_pkgname")
provides=("$_pkgname")
source=("$_pkgname::git+https://git.zrythm.org/git/$_pkgname.git")
md5sums=('SKIP')
pkgver () {
cd "$srcdir/$_pkgname"
#printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
printf "%s" "$(git describe --tags | sed 's/-/\.r/' | sed 's/v//g' | sed 's/-/\./')"
}
build() {
cd "$srcdir/$_pkgname"
mkdir -p build
cd build && meson --prefix=/usr .. -Denable_tests=true -Duser_manual=true -Dmanpage=true
ninja
}
check() {
cd "$srcdir/$_pkgname"
cd build && ninja test
}
package() {
cd "$srcdir/$_pkgname"
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${_pkgname}/COPYING"
cd build && DESTDIR="${pkgdir}/" ninja install
}
|