librelp: import as latest rsyslog's dependency.

This commit is contained in:
Jeff Huang 2015-09-17 11:07:15 +00:00
parent caecfba1d4
commit 0527deba88

24
librelp/PKGBUILD Normal file
View File

@ -0,0 +1,24 @@
# Contribution from Arch:
# Maintainer: Kaiting Chen <kaiting.chen@kiwilight.com>
pkgname=librelp
pkgver=1.2.8
pkgrel=1
pkgdesc="The Reliable Event Logging Protocol"
url="http://www.librelp.com/"
arch=('x86_64')
license=('GPL3')
depends=('gnutls')
source=("http://download.rsyslog.com/librelp/librelp-${pkgver}.tar.gz")
md5sums=('065e44d81ff35f8d3347ac910ee285c0')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}