summaryrefslogtreecommitdiff
path: root/community/liblogging/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-01-24 03:49:02 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-01-24 03:49:02 +0000
commit58a72e3d6c07ca57231ada1576ba86af346197d4 (patch)
tree1e2ab396a5c53f24fedef939833ca53fd8566847 /community/liblogging/PKGBUILD
parent1a04b89cbb8e27e4622005c896745498af51ef45 (diff)
Fri Jan 24 03:41:27 UTC 2014
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..e6f747d2c
--- /dev/null
+++ b/community/liblogging/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 104586 2014-01-23 09:47:05Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Denis Wernert <deniswernert@gmail.com>
+
+pkgname=liblogging
+pkgver=1.0.0pre
+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=('SKIP')
+
+build() {
+ cd ${srcdir}/${pkgname}
+
+ libtoolize --force --copy
+ aclocal
+ autoheader
+ automake --add-missing --copy
+ autoconf
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}
+ make install DESTDIR=${pkgdir}
+}