mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
32 lines
828 B
Plaintext
32 lines
828 B
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=librelp
|
|
pkgver=1.3.0
|
|
pkgrel=0
|
|
pkgdesc="The Reliable Event Logging Protocol library"
|
|
url="https://www.rsyslog.com"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="gnutls-dev"
|
|
subpackages="$pkgname-dev"
|
|
source="http://download.rsyslog.com/librelp/$pkgname-$pkgver.tar.gz"
|
|
options="!check" # XXX: all tests fail, don't know why
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="6e60398c68a78f4b4202a697e144f1516ff3bbb32192f745b52c77d107954febf8cb31d2e166efa96c00122f6807860ecd01084f1d3d4005336f2cb75e6461c9 librelp-1.3.0.tar.gz"
|