diff options
author | Britney Fransen <brfransen@gmail.com> | 2023-02-01 22:41:04 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2023-02-01 22:41:04 (GMT) |
commit | 5ed7fb9f5c86db5ea60c0597b8a64f5f5eddb325 (patch) | |
tree | 7e77f52fe8518fe3df097f79d12dcbc3f8a09882 /linhes/rsyslog | |
parent | fa79038e1b5a6e16f0a7914a40572ff8c2aa650b (diff) | |
download | linhes_pkgbuild-5ed7fb9f5c86db5ea60c0597b8a64f5f5eddb325.zip linhes_pkgbuild-5ed7fb9f5c86db5ea60c0597b8a64f5f5eddb325.tar.gz linhes_pkgbuild-5ed7fb9f5c86db5ea60c0597b8a64f5f5eddb325.tar.bz2 |
librelp: initial inclusion
Diffstat (limited to 'linhes/rsyslog')
-rw-r--r-- | linhes/rsyslog/librelp/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/linhes/rsyslog/librelp/PKGBUILD b/linhes/rsyslog/librelp/PKGBUILD new file mode 100644 index 0000000..9cb216c --- /dev/null +++ b/linhes/rsyslog/librelp/PKGBUILD @@ -0,0 +1,21 @@ +pkgname=librelp +pkgver=1.10.0 +pkgrel=1 +pkgdesc="The Reliable Event Logging Protocol" +url="https://www.rsyslog.com/librelp/" +arch=('x86_64' 'i686') +license=('GPL3') +depends=('gnutls') +source=("http://download.rsyslog.com/librelp/librelp-${pkgver}.tar.gz") +sha256sums=('148db4e4d1a23e8136e9ec08810929a55faf5d45e24c2e3186d5ab34355dab31') + +build() { + cd "${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |