summaryrefslogtreecommitdiff
path: root/community/libstrophe/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/libstrophe/PKGBUILD')
-rw-r--r--community/libstrophe/PKGBUILD40
1 files changed, 40 insertions, 0 deletions
diff --git a/community/libstrophe/PKGBUILD b/community/libstrophe/PKGBUILD
new file mode 100644
index 000000000..d2231886e
--- /dev/null
+++ b/community/libstrophe/PKGBUILD
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 107463 2014-03-17 12:50:07Z bpiotrowski $
+# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
+
+pkgname=libstrophe
+pkgver=20131107
+pkgrel=1
+pkgdesc='Simple, lightweight C library for writing XMPP clients'
+arch=('i686' 'x86_64')
+url='http://strophe.im/libstrophe/'
+license=('MIT' 'GPL3')
+makedepends=('git' 'doxygen' 'expat')
+checkdepends=('check')
+options=('staticlibs')
+source=(git://github.com/strophe/libstrophe.git#commit=d408eaf)
+md5sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git log -1 --format="%cd" --date=short | tr -d '-'
+}
+
+prepare() {
+ cd $pkgname
+ ./bootstrap.sh
+}
+
+build() {
+ cd $pkgname
+ ./configure --prefix=/usr
+ make
+ doxygen
+}
+
+check() {
+ make -C $pkgname check
+}
+
+package() {
+ make -C $pkgname DESTDIR="$pkgdir" install
+}