From cc3829bc56c00caae5629287584217e258c496cc Mon Sep 17 00:00:00 2001 From: Aurélien DESBRIÈRES Date: Tue, 3 Jun 2014 18:34:40 +0200 Subject: liburcu --- pcr/liburcu/PKGBUILD | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/pcr/liburcu/PKGBUILD b/pcr/liburcu/PKGBUILD index ced12e005..ed5f587ee 100644 --- a/pcr/liburcu/PKGBUILD +++ b/pcr/liburcu/PKGBUILD @@ -1,22 +1,27 @@ -# Maintainer : Parabola GNU / Linux-libre Aurélien Desbrières +# Contributor: Christian Babeux +# Contributor: Yggdrasil +# Maintainer : Parabola GNU / Linux-libre Aurélien DESBRIÈRES pkgname=liburcu -pkgver=0.7.5 +pkgver=0.8.4 pkgrel=1 pkgdesc="LGPLv2.1 userspace RCU (read-copy-update) library" arch=('i686' 'x86_64') url="http://lttng.org/urcu" license=('LGPL2.1') source=(http://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2) -md5sums=('2c5083fac662ecd38d6076dffa86259b') +depends=('glibc') +options=('!libtool') -build() { - cd ${srcdir}/userspace-rcu-${pkgver} - ./configure --prefix=/usr - make +build() +{ + cd ${srcdir}/userspace-rcu-${pkgver} + ./configure --prefix=/usr + make } -package() { - cd ${srcdir}/userspace-rcu-${pkgver} - make DESTDIR=${pkgdir} install +package() +{ + cd ${srcdir}/userspace-rcu-${pkgver} + make install DESTDIR=${pkgdir} } -- cgit v1.2.3 From 8a5fb81026577bacbab20407b3bdfb9a7d784256 Mon Sep 17 00:00:00 2001 From: Aurélien DESBRIÈRES Date: Tue, 3 Jun 2014 19:14:48 +0200 Subject: log4cxx --- pcr/log4cxx/PKGBUILD | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pcr/log4cxx/PKGBUILD b/pcr/log4cxx/PKGBUILD index c77813e56..85cb7f551 100644 --- a/pcr/log4cxx/PKGBUILD +++ b/pcr/log4cxx/PKGBUILD @@ -1,6 +1,9 @@ +# Contributor: ? +# Maintainer : Parabola GNU / Linux-libre Aurélien DESBRIÈRES + pkgname=log4cxx pkgver=0.10.0 -pkgrel=2 +pkgrel=3 pkgdesc="A C++ port of Log4j" url="http://logging.apache.org/log4cxx" license="APACHE" @@ -10,15 +13,17 @@ makedepends=('autoconf' 'automake' 'libtool' 'patch' 'zip' 'gzip' 'sed') source=(http://archive.apache.org/dist/logging/$pkgname/$pkgver/apache-$pkgname-$pkgver.tar.gz log4cxx-0.10.0-missing_includes.patch) -md5sums=('b30ffb8da3665178e68940ff7a61084c' - 'dfa17719a57b19f12cbef94419a2aac8') build() { - cd $startdir/src/apache-$pkgname-$pkgver + cd "$srcdir/apache-$pkgname-$pkgver" patch -p1 < $startdir/log4cxx-0.10.0-missing_includes.patch ./configure --prefix=/usr --disable-static - make || return 1 - make DESTDIR=$startdir/pkg install + make +} + +package() { + cd "$srcdir/apache-$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install } -- cgit v1.2.3