Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id E1A1D781912 for ; Wed, 14 Oct 2020 08:14:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id E73BC5371B; Wed, 14 Oct 2020 10:05:05 +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 04wI6d9SsGdm; Wed, 14 Oct 2020 10:04:58 +0200 (CEST) From: Al-Hassan Abdel-Raouf DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1602662698; bh=3HXqmZNoioxtOeKLKjPzbgZh7oTMTCkidGX7oEWHywk=; h=From:To:Cc:Subject:Date; b=g9y+PJ6BKXxw9cL6tjZ9dQ5f0K85NAVBWhPYJ0UWgjmKIZDfyUS1kMwhuufuo5t3T vq0reGw2196RzYAUrYjJNKeewxx4+WDxtJV6LvuqMNvp/va9Str+P1JkObjvKfSxrQ 5Tn/m2INv+jrlxJK9OBfQOofSE9WvaXZIpP6VvJuh5AVazeSRsx6ORwI1+I9hbCTyd 5K6bUW4iFcfaFDd00c436xG1HmSHh1y58gL8OYIjTbgcpCe6Hd0Dt49ASBJip1W/nF nGxfLRC7k6wbTLWqH44uhI+kMRp1BZwPn6HhcwjZnzaGGNt4+0EeUQtRkzjobGzk7Y vjmrDyZtjrETQ== To: alpine-aports@lists.alpinelinux.org Cc: Al-Hassan Abdel-Raouf Subject: [PATCH] testing/tre: new aport Date: Wed, 14 Oct 2020 10:04:46 +0200 Message-Id: <20201014080446.15248-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 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testing/tre/APKBUILD diff --git a/testing/tre/APKBUILD b/testing/tre/APKBUILD new file mode 100644 index 0000000000..4eb0e68fe4 --- /dev/null +++ b/testing/tre/APKBUILD @@ -0,0 +1,25 @@ +# 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" +depends="musl" +subpackages="$pkgname-doc $pkgname-dev" +source="https://laurikari.net/tre/tre-$pkgver.tar.bz2" + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --enable-static + make +} + +package() { + make DESTDIR="$pkgdir" install + +} + +sha512sums="db7465993e0d25eee8e52f974427b8a040234cf0f017769eb94ee88bc6261821336aad7f762bfa82db7e2212d8449bc221592586f061c528a59a550773cbc263 tre-0.8.0.tar.bz2" -- 2.28.0