[arch-commits] Commit in tcpflow/repos (2 files)

Felix Yan felixonmars at archlinux.org
Wed Jan 23 06:01:30 UTC 2019


    Date: Wednesday, January 23, 2019 @ 06:01:29
  Author: felixonmars
Revision: 427097

archrelease: copy trunk to community-testing-x86_64

Added:
  tcpflow/repos/community-testing-x86_64/
  tcpflow/repos/community-testing-x86_64/PKGBUILD
    (from rev 427096, tcpflow/trunk/PKGBUILD)

----------+
 PKGBUILD |   45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

Copied: tcpflow/repos/community-testing-x86_64/PKGBUILD (from rev 427096, tcpflow/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2019-01-23 06:01:29 UTC (rev 427097)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: Jeff Mickey <jeff at archlinux.org>
+
+pkgname=tcpflow
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently"
+arch=('x86_64')
+url="https://github.com/simsong/tcpflow"
+license=('GPL')
+depends=('libpcap' 'cairo' 'openssl' 'sqlite')
+makedepends=('git' 'boost')
+source=("git+https://github.com/simsong/$pkgname.git#tag=$pkgname-$pkgver"
+        'git+https://github.com/simsong/be13_api.git'
+        'git+https://github.com/simsong/dfxml.git'
+        'git+https://github.com/joyent/http-parser.git')
+sha512sums=('SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP')
+
+prepare() {
+  cd $pkgname
+  git submodule init
+  git config submodule."src/be13_api".url "$srcdir/be13_api"
+  git config submodule."src/dfxml".url "$srcdir/dfxml"
+  git config submodule."src/http-parser".url "$srcdir/http-parser"
+  git submodule update
+
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname
+  sh bootstrap.sh
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+



More information about the arch-commits mailing list