[arch-commits] Commit in (lv2lint lv2lint/repos lv2lint/trunk lv2lint/trunk/PKGBUILD)
David Runge
dvzrv at archlinux.org
Tue Oct 15 09:58:40 UTC 2019
Date: Tuesday, October 15, 2019 @ 09:58:40
Author: dvzrv
Revision: 516115
Adding lv2lint.
Added:
lv2lint/
lv2lint/repos/
lv2lint/trunk/
lv2lint/trunk/PKGBUILD
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Added: lv2lint/trunk/PKGBUILD
===================================================================
--- lv2lint/trunk/PKGBUILD (rev 0)
+++ lv2lint/trunk/PKGBUILD 2019-10-15 09:58:40 UTC (rev 516115)
@@ -0,0 +1,32 @@
+# Maintainer: David Runge <dave at sleepmap.de>
+
+pkgname=lv2lint
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="Check whether a given LV2 plugin is up to the specification"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/lv2lint/"
+license=('Artistic2.0')
+depends=('glibc' 'libcurl.so' 'libelf' 'lilv')
+makedepends=('lv2' 'meson')
+source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz")
+sha512sums=('cbbe7743afd5c983b40a267f0d2358404d2c0cd25593ca046ddcaa751a1e3bd083a02d8068432761f650035b5da7ca0f8b5fe0f06dcac61e5bad8cc79961d064')
+
+build() {
+ cd "$pkgname-$pkgver"
+ meson --prefix=/usr \
+ -Donline-tests=true \
+ -Delf-tests=true \
+ build
+ ninja -C build
+}
+
+check() {
+ cd "$pkgname-$pkgver"
+ ninja -C build test
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ DESTDIR="$pkgdir/" ninja -C build install
+}
More information about the arch-commits
mailing list