blob: bf4feb7be3ffb7d9b6faed797ed9897efe7980cf (
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
|
# Maintainer: David Adler <d.adler@posteo.de>
_pkgname=nekobee
pkgname=$_pkgname-git
pkgver=0.1.8.r2.593d4be
pkgrel=2
pkgdesc="a DSSI softsynth recreation of a classic single-oscillator bass monosynth"
arch=('x86_64')
url="https://github.com/gordonjcp/nekobee"
license=('GPL')
depends=('gtk2' 'liblo')
makedepends=('git' 'dssi' 'python2' 'ladspa')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=(git+https://github.com/gordonjcp/nekobee.git)
md5sums=('SKIP')
pkgver() {
cd $_pkgname
printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}
build() {
cd $_pkgname
python2 ./waf configure --prefix=/usr
python2 ./waf
}
package() {
cd $_pkgname
python2 ./waf install --destdir="$pkgdir/"
install -t "$pkgdir/usr/share/doc/$_pkgname/" \
-vDm 644 README
}
|