summaryrefslogtreecommitdiff
path: root/community/liblogging/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/liblogging/PKGBUILD')
-rw-r--r--community/liblogging/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/community/liblogging/PKGBUILD b/community/liblogging/PKGBUILD
new file mode 100644
index 000000000..9c2c94f39
--- /dev/null
+++ b/community/liblogging/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 105659 2014-02-13 09:26:42Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Denis Wernert <deniswernert@gmail.com>
+
+pkgname=liblogging
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="easy to use, portable, open source library for system logging"
+url="http://www.liblogging.org/"
+arch=('i686' 'x86_64')
+license=('GPL')
+makedepends=('git')
+options=('strip' 'zipman' '!libtool')
+source=("http://download.rsyslog.com/$pkgname/$pkgname-$pkgver.tar.gz")
+#source=("git://git.adiscon.com/git/liblogging.git")
+md5sums=('1db6bef59157a5676f8fad49be6e5d9d')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+# libtoolize --force --copy
+# aclocal
+# autoheader
+# automake --add-missing --copy
+# autoconf
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make install DESTDIR=${pkgdir}
+}