summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 523091289a7ada7b88d4de27724495bab6a5a0a3 (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
# Maintainer: Alexandros Theodotou <alex at alextee dot org>

pkgname=zrythm-git
pkgver=r141.668d754
pkgrel=1
pkgdesc="Free GNU/Linux music production system (DAW)"
arch=('x86_64')
url="https://gitlab.com/alextee/zrythm"
license=('GPL3')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
depends=('gtk3' 'lv2' 'lilv' 'suil' 'jack' 'libsndfile' 'libsmf' 'libdazzle')
makedepends=('git')
source=("$pkgname::git+https://gitlab.com/alextee/zrythm.git")
md5sums=('SKIP')

pkgver () {
  cd "$srcdir/$pkgname"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
  cd "$srcdir/$pkgname"
}

build() {
  cd "$srcdir/$pkgname"
  autoreconf -fi
	./configure --prefix=/usr --enable-aur-build
	make
}

package() {
  cd "$srcdir/$pkgname"
	make DESTDIR="$pkgdir/" install
}