core/librelp/PKGBUILD
2015-11-29 19:18:23 +01:00

24 lines
558 B
Bash

# Contribution from Arch: https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/librelp
pkgname=librelp
pkgver=1.2.8
pkgrel=2
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
}