diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-07 03:09:25 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-07 03:09:25 +0000 |
commit | bd65dc7107bfdd881c3b5451d0300824cf435428 (patch) | |
tree | e3a556d41162da07c82e31daa6fc22af18719e63 /testing/eventlog | |
parent | 415856bdd4f48ab4f2732996f0bae58595092bbe (diff) |
Thu Apr 7 03:09:43 UTC 2011
Diffstat (limited to 'testing/eventlog')
-rw-r--r-- | testing/eventlog/ChangeLog | 15 | ||||
-rw-r--r-- | testing/eventlog/PKGBUILD | 29 |
2 files changed, 44 insertions, 0 deletions
diff --git a/testing/eventlog/ChangeLog b/testing/eventlog/ChangeLog new file mode 100644 index 000000000..d90a881d4 --- /dev/null +++ b/testing/eventlog/ChangeLog @@ -0,0 +1,15 @@ +2011-04-05 Stéphane Gaudreault <stephane@archlinux.org> + + * Rebuild of old package + * Tidy up PKGBUILD + +2010-07-10 Dan McGee <dan@archlinux.org> + + * Updated PKGBUILD to be in line with standard style + * Upstream update + +2009-01-03 Eric Belanger <eric@archlinux.org> + + * eventlog 0.2.9-1 + * Upstream update + * Added ChangeLog diff --git a/testing/eventlog/PKGBUILD b/testing/eventlog/PKGBUILD new file mode 100644 index 000000000..638fe3703 --- /dev/null +++ b/testing/eventlog/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 118142 2011-04-05 15:32:10Z stephane $ +# Maintainer: Eric Belanger <eric@archlinux.org> +# Contributor: Judd Vinet <jvinet@zeroflux.org> + +pkgname=eventlog +pkgver=0.2.12 +pkgrel=2 +pkgdesc="API to format and send structured log messages" +arch=('i686' 'x86_64') +url="http://www.balabit.com/support/community/products/" +license=('BSD') +depends=('glibc') +options=('!libtool') +changelog=ChangeLog +source=(http://www.balabit.com/downloads/files/eventlog/${pkgver%.*}/eventlog_${pkgver}.tar.gz) +md5sums=('3d6ebda8a161d36cb40d09328f78786b') +sha1sums=('3e35a634e7de029ab9d36995a085bfcb00ed6a4d') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -D -m644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +} |