[arch-commits] Commit in fstrm/repos (2 files)
Evangelos Foutras
foutrelis at archlinux.org
Tue Aug 6 02:56:16 UTC 2019
Date: Tuesday, August 6, 2019 @ 02:56:16
Author: foutrelis
Revision: 497526
archrelease: copy trunk to community-staging-x86_64
Added:
fstrm/repos/community-staging-x86_64/
fstrm/repos/community-staging-x86_64/PKGBUILD
(from rev 497525, fstrm/trunk/PKGBUILD)
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: fstrm/repos/community-staging-x86_64/PKGBUILD (from rev 497525, fstrm/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2019-08-06 02:56:16 UTC (rev 497526)
@@ -0,0 +1,32 @@
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+
+pkgname=fstrm
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="A C implementation of the Frame Streams data transport protocol"
+arch=('x86_64')
+url="https://github.com/farsightsec/fstrm"
+license=('Apache')
+depends=('libevent')
+source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('ca762fb260176f35af639376cc65c3f13a5f63d1cca42eb5ce87caca8d57c450')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ autoreconf -vfi
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd ${pkgname}-${pkgver}
+ make -k check
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}
+
More information about the arch-commits
mailing list