blob: 5029d3d30bf3ce44d1cf9376f4bdd43db9d502f1 (
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 Haskellfant <moritz.kiefer@purelyfunctional.org
pkgname=zam-plugins-git
pkgver=3.4.r0.gc0b5904
pkgrel=2
pkgdesc="Collection of LV2/LADSPA/VST audio plugins for high quality processing"
arch=('i686' 'x86_64')
url="https://github.com/zamaudio/zam-plugins"
license=('GPL2')
provides=('zamplugins')
depends=('gcc-libs')
makedepends=('git' 'pkg-config' 'libx11' 'libgl' 'liblo' 'jack' 'ladspa')
optdepends=()
source=("$pkgname"::'git://github.com/zamaudio/zam-plugins.git')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
git describe --long | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$pkgname"
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir/" PREFIX=/usr install
}
|