summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pcr/libqb/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/pcr/libqb/PKGBUILD b/pcr/libqb/PKGBUILD
deleted file mode 100644
index 10feee93f..000000000
--- a/pcr/libqb/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# Maintainer: fauno <fauno@parabola.nu>
-# Maintainer (arch): Marcin Wieczorek <marcin@marcin.co>
-# Contributor: ovi chis <ovi@ovios.org>
-
-pkgname=libqb
-pkgver=1.0.2
-pkgrel=1
-pkgdesc='Library with the primary purpose of providing high performance client server reusable features'
-arch=("i686" "x86_64")
-makedepends=("doxygen" "splint")
-license=("LGPL2.1")
-options=(!libtool)
-url="https://github.com/ClusterLabs/${pkgname}"
-source=("https://github.com/ClusterLabs/libqb/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('5f852d2abc8062ec9314b0fe163ca008a7c0780aded387a77fd7d8b0a7ff3237e0ff1f90c3e8f447a7e31604dea33d6d26901e701d5d149d932dfb8d75db7756'
- 'SKIP')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
- setarch ${CARCH} ./autogen.sh
- setarch ${CARCH} ./configure --prefix=/usr\
- --disable-fatal-warnings\
- --disable-static\
- --libdir=/usr/lib\
- --sbindir=/usr/bin
- setarch ${CARCH} make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- setarch ${CARCH} make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et: