summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f8680ca446f8158aeae8337408a029d265f9f4f8 (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
# Maintainer: Jérémie Astor <astor.jeremie@wanadoo.fr>
pkgname=gwion-git
pkgver=0.1
pkgrel=1
pkgdesc="a strongly timed musical programming language"
arch=('any')
url="https://github.com/fennecdjay/gwion"
license=('GPL3')
makedepends=('git')
provides=("${pkgname}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/fennecdjay/gwion')
md5sums=('SKIP')

prepare() {
	cd "$srcdir/${pkgname%-git}"
  git clone https://github.com/fennecdjay/gwion-util util
  git clone https://github.com/fennecdjay/gwion-ast ast
}

build() {
	cd "$srcdir/${pkgname%-git}"
	make
}

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