core/librelp/PKGBUILD

24 lines
558 B
Bash
Raw Normal View History

2015-11-30 02:18:23 +08:00
# Contribution from Arch: https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/librelp
pkgname=librelp
pkgver=1.2.8
2015-11-30 02:18:23 +08:00
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
}