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

pkgname=zrythm-git
pkgver=0.1
pkgrel=1
pkgdesc="Free GNU/Linux music production system (DAW)"
arch=('x86_64')
url="https://gitlab.com/alextee/zrythm"
license=('GPL')
depends=('gtk3' 'lilv-git' 'suil-git' 'jack2' 'libsndfile' 'libsmf')
makedepends=('git')
source=("$pkgname-$pkgver::git+https://gitlab.com/alextee/zrythm.git")
md5sums=('SKIP')

prepare() {
	cd "$pkgname-$pkgver"
}

build() {
	cd "$pkgname-$pkgver"
  ./autogen.sh
	./configure --prefix=/usr --enable-aur-build
	make
}

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