Date: Friday, August 30, 2019 @ 12:28:51
  Author: alucryd
Revision: 505217

archrelease: copy trunk to community-x86_64

Added:
  hyperscan/repos/
  hyperscan/repos/community-x86_64/
  hyperscan/repos/community-x86_64/.SRCINFO
    (from rev 505216, hyperscan/trunk/.SRCINFO)
  hyperscan/repos/community-x86_64/PKGBUILD
    (from rev 505216, hyperscan/trunk/PKGBUILD)

----------+
 .SRCINFO |   17 +++++++++++++++++
 PKGBUILD |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

Copied: hyperscan/repos/community-x86_64/.SRCINFO (from rev 505216, 
hyperscan/trunk/.SRCINFO)
===================================================================
--- repos/community-x86_64/.SRCINFO                             (rev 0)
+++ repos/community-x86_64/.SRCINFO     2019-08-30 12:28:51 UTC (rev 505217)
@@ -0,0 +1,17 @@
+pkgbase = hyperscan
+       pkgdesc = High-performance regular expression matching library
+       pkgver = 5.2.0
+       pkgrel = 1
+       url = https://www.hyperscan.io
+       arch = x86_64
+       license = BSD
+       makedepends = boost
+       makedepends = cmake
+       makedepends = git
+       makedepends = python
+       makedepends = ragel
+       source = git+https://github.com/intel/hyperscan.git#tag=v5.2.0
+       sha256sums = SKIP
+
+pkgname = hyperscan
+

Copied: hyperscan/repos/community-x86_64/PKGBUILD (from rev 505216, 
hyperscan/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD                             (rev 0)
+++ repos/community-x86_64/PKGBUILD     2019-08-30 12:28:51 UTC (rev 505217)
@@ -0,0 +1,46 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Alireza Ayinmehr <[email protected]>
+# Contributor: Maxwell Pray a.k.a. Synthead <[email protected]>
+# Contributor: JSkier <jskier at gmail dot com>
+# Contributor: Ivan Shapovalov <[email protected]>
+
+pkgname=hyperscan
+pkgver=5.2.0
+pkgrel=1
+pkgdesc='High-performance regular expression matching library'
+arch=(x86_64)
+url=https://www.hyperscan.io
+license=(BSD)
+makedepends=(
+  boost
+  cmake
+  git
+  python
+  ragel
+)
+source=(git+https://github.com/intel/hyperscan.git#tag=v${pkgver})
+sha256sums=(SKIP)
+
+prepare() {
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake ../hyperscan \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DBUILD_STATIC_AND_SHARED=ON
+  make
+}
+
+package() {
+  make DESTDIR="$pkgdir" -C build install
+  install -Dm 644 hyperscan/COPYING -t 
"${pkgdir}"/usr/share/licenses/hyperscan/
+}
+
+# vim: ts=2 sw=2 et:

Reply via email to