blob: 7cc53946b595d63ec16fdf2c5641d1121b29acab (
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
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
}
|