Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 925127818ED for ; Wed, 14 Oct 2020 13:30:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 5A10153785; Wed, 14 Oct 2020 15:30:34 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XagIIa5ou0Ir; Wed, 14 Oct 2020 15:30:33 +0200 (CEST) From: Al-Hassan Abdel-Raouf DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1602682232; bh=qHZ4hDmPxtYINsqX1DxZ7lWgWjaVCQGUW/hcm9VRFv0=; h=From:To:Cc:Subject:Date; b=F43S1912KvbQYjmn6iQTsYU0KS8VrjTYULLyJYZsDo5yzmuaIa8hDvqkn05BKtrpu irmQL6gf4yW+nc3XWEMwmy5w8/NcCreG9h1kjpj5ffTmDUuWs6q2JbGArjyAiyV+HX Rfs57Uvsq+70KE4lQLLUQsntvWPm6Ls4hLcxYtQIESmtmm1QwwstMOwXOHpF67WPVs JwEuh0KFPYpzvF6ezujuENcNWBwq9HGddQZvCgG7x6s2GnQiL8E4PNXSCDlp1MxwIi UJgqOGaXpIZaQvcnUq2IyQcbOgLLGjk+6hsuznbOO0NK/7O/i1YV9KslxblR8aCv+k 7UnzzhBKRY9oA== To: alpine-aports@lists.alpinelinux.org Cc: Al-Hassan Abdel-Raouf Subject: [PATCH v2] testing/tre: new aport Date: Wed, 14 Oct 2020 15:30:01 +0200 Message-Id: <20201014133001.11101-1-alhassanaraouf@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit https://laurikari.net/tre POSIX compliant regexp matching library. Includes agrep for approximate grepping. --- testing/tre/APKBUILD | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 testing/tre/APKBUILD diff --git a/testing/tre/APKBUILD b/testing/tre/APKBUILD new file mode 100644 index 0000000000..eddfb91bd3 --- /dev/null +++ b/testing/tre/APKBUILD @@ -0,0 +1,22 @@ +# Contributor: +# Maintainer: +pkgname=tre +pkgver=0.8.0 +pkgrel=0 +pkgdesc="POSIX compliant regexp matching library. Includes agrep for approximate grepping." +url="https://laurikari.net/tre" +arch="all" +license="BSD" +subpackages="$pkgname-doc $pkgname-dev" +source="https://laurikari.net/tre/tre-$pkgver.tar.bz2" + +build() { + ./configure --prefix=/usr --enable-static + make +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums="db7465993e0d25eee8e52f974427b8a040234cf0f017769eb94ee88bc6261821336aad7f762bfa82db7e2212d8449bc221592586f061c528a59a550773cbc263 tre-0.8.0.tar.bz2" -- 2.28.0