summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9b00e3e121766293bbbf15461d75d349733a5be8 (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
55
56
57
58
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Your Name <youremail@domain.com>
pkgname=foo-yc20
pkgver=1.3.0
pkgrel=1
pkgdesc="This is a Faust implementation of a 1969 designed Yamaha combo organ, the YC-20. Available on the web, as a VST and LV2 plugins and a standalone version."
arch=("x86_64" "i686")
url="https://github.com/sampov2/foo-yc20"
license=('BSD')
depends=(
	'atk'
	'cairo'
	'fontconfig'
	'freetype2'
	'gdk-pixbuf2'
	'graphite'
	'gtk2'
	'harfbuzz'
	'jack'
	'libdatrie'
	'libglvnd'
	'libpng'
	'libthai'
	'libx11'
	'libxau'
	'libxcb'
	'libxcomposite'
	'libxcursor'
	'libxdamage'
	'libxdmcp'
	'libxext'
	'libxfixes'
	'libxi'
	'libxinerama'
	'libxrandr'
	'libxrender'
	'pango'
	'pixman'
)
provides=('foo-yc20')
source=("https://github.com/sampov2/foo-yc20/archive/1.3.0.tar.gz")
md5sums=('c37dda7d5fee4a134f1ec7c5994c890f')



build() {
	cd "$pkgname-$pkgver"
	make $BUILD_FLAGS PREFIX="/usr"
}

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