[arch-commits] Commit in (libqb libqb/repos libqb/trunk libqb/trunk/PKGBUILD)

Levente Polyak anthraxx at archlinux.org
Sun Oct 14 08:29:40 UTC 2018


    Date: Sunday, October 14, 2018 @ 08:29:40
  Author: anthraxx
Revision: 393385

addpkg: libqb 1.0.3-2

Added:
  libqb/
  libqb/repos/
  libqb/trunk/
  libqb/trunk/PKGBUILD

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

Added: libqb/trunk/PKGBUILD
===================================================================
--- libqb/trunk/PKGBUILD	                        (rev 0)
+++ libqb/trunk/PKGBUILD	2018-10-14 08:29:40 UTC (rev 393385)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Marcin Wieczorek <marcin at marcin.co>
+# Contributor: ovi chis <ovi at ovios.org>
+
+pkgname=libqb
+pkgver=1.0.3
+pkgrel=2
+pkgdesc='Library for providing high performance, reusable features for client-server architecture'
+url='https://github.com/ClusterLabs/libqb'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=('doxygen' 'splint')
+checkdepends=('check')
+provides=('libqb.so')
+source=(https://github.com/ClusterLabs/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha512sums=('3f97fae57f526dea06530f8facb4bcb45b20a961f95ce75b4039d2978dd65288d8c14eb8d619617a89d0202fc7214157562adae06e8b7911264f2a2210b413e9'
+            'SKIP')
+validpgpkeys=('EA78541A2D92451106C8A1F7B67157F3A70D4537') # Christine Caulfield (Chrissie at work) <ccaulfie at redhat.com>
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  ./autogen.sh
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -C tests VERBOSE=1 check
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+    --prefix=/usr \
+    --disable-fatal-warnings \
+    --disable-static \
+    --libdir=/usr/lib \
+    --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list