diff options
author | Térence Clastres | 2020-12-23 18:17:25 +0100 |
---|---|---|
committer | Térence Clastres | 2020-12-23 18:17:25 +0100 |
commit | adaff44bfc92e8f7bf08cb54f83a83d736f5b615 (patch) | |
tree | 67b54c303511503f8772aa891c9839ae3c6153a9 | |
download | aur-adaff44bfc92e8f7bf08cb54f83a83d736f5b615.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 18 | ||||
-rw-r--r-- | PKGBUILD | 30 |
2 files changed, 48 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..526a6c6a76d6 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = jack-audio-tools + pkgdesc = A collection of utilities and tools for the JACK audio ecosystem. Git version. + pkgver = 0.3.2 + pkgrel = 1 + url = https://github.com/SpotlightKid/jack-audio-tools + arch = any + license = MIT + makedepends = python-setuptools + depends = lilv + depends = python-rdflib + optdepends = jack: for JACK Transport scripts + optdepends = lv2: for LV2 scripts + optdepends = carla: for carxp2lv2presets script + source = https://files.pythonhosted.org/packages/source/j/jack-audio-tools/jack-audio-tools-0.3.2.tar.gz + sha256sums = 288de54dd783d4f37ebe754910166318f7efe9ac90ce2e41564ff366236526ec + +pkgname = jack-audio-tools + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..1022e9662557 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Térence Clastres <t dot clastres at gmail dot com> + +pkgname=jack-audio-tools +pkgver=0.3.2 +pkgrel=1 +pkgdesc="A collection of utilities and tools for the JACK audio ecosystem. Git version." +arch=('any') +url="https://github.com/SpotlightKid/jack-audio-tools" +license=('MIT') +makedepends=('python-setuptools') +depends=('lilv' 'python-rdflib') +optdepends=('jack: for JACK Transport scripts' + 'lv2: for LV2 scripts' + 'carla: for carxp2lv2presets script' + ) +source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz") +sha256sums=('288de54dd783d4f37ebe754910166318f7efe9ac90ce2e41564ff366236526ec') + +build() { + cd "$pkgname-$pkgver" + + python setup.py build +} + +package() { + cd "$pkgname-$pkgver" + + python setup.py install --root="$pkgdir" --optimize=1 --skip-build + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} |