[arch-commits] Commit in libinstpatch/repos (staging-x86_64 staging-x86_64/PKGBUILD)

David Runge dvzrv at archlinux.org
Tue Jan 26 15:33:09 UTC 2021


    Date: Tuesday, January 26, 2021 @ 15:33:09
  Author: dvzrv
Revision: 406777

archrelease: copy trunk to staging-x86_64

Added:
  libinstpatch/repos/staging-x86_64/
  libinstpatch/repos/staging-x86_64/PKGBUILD
    (from rev 406776, libinstpatch/trunk/PKGBUILD)

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

Copied: libinstpatch/repos/staging-x86_64/PKGBUILD (from rev 406776, libinstpatch/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2021-01-26 15:33:09 UTC (rev 406777)
@@ -0,0 +1,36 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+
+pkgname=libinstpatch
+pkgver=1.1.6
+pkgrel=1
+pkgdesc="Instrument file software library"
+arch=('x86_64')
+url="https://github.com/swami/libinstpatch"
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=('cmake' 'glib2' 'libsndfile' 'python')
+provides=('libinstpatch-1.0.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/swami/libinstpatch/archive/v${pkgver}.tar.gz")
+sha512sums=('0e22165fc3c045bbc3ab2e1c090728232ed9142797ddbd067b682b9bcfee93850deb76c23b78f49a776e3d099be25fa029673ce8e4a909b2f48860dcdc55803c')
+b2sums=('c5881e6559a7fbcb40e1c43c7dbbfc1df9ac9445e83c70044855c192c3b04945ae125c0e06253ba76d3922a1f8fc6965810700ed57018864b319076ee9528d55')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+        -DLIB_INSTALL_DIR=/usr/lib \
+        -DCMAKE_BUILD_TYPE='None' \
+        -Wno-dev \
+        -B build \
+        -S .
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=('libglib-2.0.so' 'libgobject-2.0.so' 'libsndfile.so')
+  cd "$pkgname-$pkgver"
+  make VERBOSE=1 DESTDIR="$pkgdir/" install -C build
+  install -vDm 644 {AUTHORS,ChangeLog,README.md,TODO.tasks} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



More information about the arch-commits mailing list