summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMárcio Alexandre Silva Delgado <coadde@lavabit.com>2013-05-13 20:24:30 -0300
committerMárcio Alexandre Silva Delgado <coadde@lavabit.com>2013-05-13 20:24:30 -0300
commit9c357eaa6bea0f96e814a1a146f6cf8cdc3b1a05 (patch)
tree93667214e139f389be258418cd5a9454c59a67e3
parente976ce91e513e606983c187ec16d541f2adde9c9 (diff)
libqb: add pkg to repo
-rw-r--r--pcr/libqb/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/pcr/libqb/PKGBUILD b/pcr/libqb/PKGBUILD
new file mode 100644
index 000000000..eacdb6ea2
--- /dev/null
+++ b/pcr/libqb/PKGBUILD
@@ -0,0 +1,34 @@
+# Maintainer: Márcio Silva <coadde@lavabit.com>
+
+pkgname=libqb
+pkgver=0.14.4
+pkgrel=1
+pkgdesc='Library with the primary purpose of providing high performance client server reusable features'
+arch=(
+ i686
+ x86_64
+ mips64el
+)
+makedepends=(
+ doxygen
+ splint
+)
+license=LGPL2.1
+url=https://github.com/asalkeld/$pkgname/wiki
+source=https://github.com/asalkeld/$pkgname/archive/v$pkgver.tar.gz
+sha512sums=1377e38d5547eb516b255c0aa0972e858048053202692d7d5ef1c746d79dee2c78eddc29e797215376990f2c776b34261f765858606b59d77f9218fb0dac5977
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ setarch $CARCH ./autogen.sh
+ setarch $CARCH ./configure --prefix=/usr\
+ --libdir=/usr/lib
+ setarch $CARCH make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ setarch $CARCH make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et: