blob: f18b99bf4af7b90bdbd572391cce31b86d0670c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Author: Yann Pomarede
pkgname=jcgui-git
pkgver=0.8
pkgrel=1
pkgdesc="Jc_Gui is a frontend to jconvolver"
arch=('any')
url="https://github.com/zzzzrrr/jcgui"
license=(GPL)
depends=("cairo" "pango" "atk" "gtk2" "zita-resampler")
source=("jcgui::git+https://github.com/zzzzrrr/jcgui.git")
md5sums=('SKIP')
build() {
cd "$srcdir/jcgui"
python2 waf configure
python2 waf build -j4
}
package() {
cd "$srcdir/jcgui"
python2 waf install --destdir=$pkgdir
}
|