mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 04:44:40 +08:00
25 lines
530 B
Bash
25 lines
530 B
Bash
|
# 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
|
||
|
}
|