[arch-commits] Commit in lv2lint/repos (community-x86_64 community-x86_64/PKGBUILD)

David Runge dvzrv at archlinux.org
Tue Oct 15 10:01:25 UTC 2019


    Date: Tuesday, October 15, 2019 @ 10:01:25
  Author: dvzrv
Revision: 516116

archrelease: copy trunk to community-x86_64

Added:
  lv2lint/repos/community-x86_64/
  lv2lint/repos/community-x86_64/PKGBUILD
    (from rev 516115, lv2lint/trunk/PKGBUILD)

----------+
 PKGBUILD |   32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

Copied: lv2lint/repos/community-x86_64/PKGBUILD (from rev 516115, lv2lint/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2019-10-15 10:01:25 UTC (rev 516116)
@@ -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