blob: c71c404fc0b33b875307ad8afbf4287e4b24d72b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: WoefulDerelict <WoefulDerelict at GMail dot com>
pkgname=laditools
pkgver=1.1
pkgrel=1
pkgdesc="Utilities to improve integration and workflow with JACK and LASH."
arch=('any')
url="https://gitea.ladish.org/LADI/laditools"
license=('GPL3')
depends=('gtk3' 'ladish' 'python' 'python-gobject' 'python-pyxdg' 'python-yaml')
makedepends=('git' 'glade' 'python-distutils-extra')
source=("git+https://gitea.ladish.org/LADI/laditools.git#tag=$pkgver")
sha256sums=('SKIP')
build() {
cd "$pkgname"
python setup.py build
}
package() {
cd "$pkgname"
python setup.py install --prefix=/usr --root="$pkgdir"
}
|