summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 06b8610fd67f8a74a3f047e1b70b916f75ef25c4 (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
# 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: Zurg Egg (k1hn3trj7@mozmail.com)
pkgname=convolv2
pkgver=0.7.2
pkgrel=1
epoch=
pkgdesc="LV2 convolution plugin"
arch=('x86_64')
url="https://github.com/x42/convoLV2"
license=('GPL2')
groups=()
depends=('zita-convolver')
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/x42/convoLV2/archive/refs/tags/v$pkgver.tar.gz")
noextract=()
sha256sums=('cdd020e284a2fc39777bfcddad67845e23d82eb25170f6e0670a49d5833d1cba')
validpgpkeys=()

build() {
	cd "convoLV2-$pkgver"
	make
}

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