summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 67f71c466537295ae74d292f72f3f98b64e42097 (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
51
52
53
54
# Maintainer: Carlo Capocasa <carlo@capocasa.net>
pkgname=phasex
pkgver=0.14.97
pkgrel=1
epoch=
pkgdesc="A high-precision MIDI software synthesizer built around flexible phase modulation and oscillator sources"
arch=(x86_64)
url="https://github.com/williamweston/phasex.git"
license=('GPL')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=(
"$pkgname::git+https://github.com/williamweston/phasex.git#tag=0.14.97"
)
noextract=()
md5sums=(
"SKIP"
)
validpgpkeys=()

prepare() {
	cd "$pkgname"
  aclocal
  autoconf
	automake
	autoheader
  ./configure --enable-arch=native --enable-parts=2
}

build() {
	cd "$pkgname"
  make
}

check() {
  cd "$pkgname"
}

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