summaryrefslogtreecommitdiff
path: root/community/rlog/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/rlog/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/rlog/PKGBUILD')
-rw-r--r--community/rlog/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/rlog/PKGBUILD b/community/rlog/PKGBUILD
new file mode 100644
index 000000000..5479d9d03
--- /dev/null
+++ b/community/rlog/PKGBUILD
@@ -0,0 +1,25 @@
+# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
+# Contributor: Sven Kauber <celeon@gmail.com>
+
+pkgname=rlog
+pkgver=1.4
+pkgrel=3
+pkgdesc="A flexible message logging facility for C++ programs and libraries"
+arch=('i686' 'x86_64')
+url="http://arg0.net/wiki/rlog"
+license=('LGPL')
+depends=('gcc-libs')
+options=('!libtool')
+source=(http://rlog.googlecode.com/files/$pkgname-$pkgver.tar.gz \
+ $pkgname-section.patch)
+md5sums=('c29f74e0f50d66b20312d049b683ff82'
+ '69644989e07ceb5c265dfc0c6f770810')
+
+build()
+{
+ cd $srcdir/$pkgname-$pkgver
+ patch -Np1 -i $srcdir/$pkgname-section.patch || return 1
+ ./configure --prefix=/usr
+ make || return 1
+ make DESTDIR=$pkgdir/ install
+}