summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 23907cc6f8c1729e4d1f2f6001000597cc90514f (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
46
47
48
49
50
# Maintainer: Milk Brewster <milkii@freenode.irc>
pkgname=beast-git
pkgver=r9324.d92270e76
pkgrel=1
epoch=
pkgdesc="Digital synthesizer and music creation system (in development)."
arch=('x86_64')
url="https://github.com/tim-janik/beast"
license=('LGPL')
groups=()
depends=()
makedepends=('gcc' 'python2' 'libgnomecanvas' 'libvorbis' 'flac' 'libmad' 'npm' 'fluidsynth' 'python-pandocfilters' 'imagemagick' 'pandoc' 'unzip')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+https://github.com/tim-janik/beast")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

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

prepare() {
  cd "beast"
  make default prefix=/usr
}

build() {
  cd "beast"
	make
}

check() {
  cd "beast"
	# make  check
}

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