Received: from mout-p-201.mailbox.org (mout-p-201.mailbox.org [80.241.56.171]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 2733B78104D for ; Mon, 29 Mar 2021 12:27:41 +0000 (UTC) Received: from smtp1.mailbox.org (smtp1.mailbox.org [80.241.60.240]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-201.mailbox.org (Postfix) with ESMTPS id 4F8Bg06v6ZzQk1L; Mon, 29 Mar 2021 14:27:40 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fmac.xyz; s=MBO0001; t=1617020858; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=6XGU0m5OTglWqZ5pg7GdpmxXTHc5gq1/Sf7aTMSwv34=; b=H4AdpS2sYkbO4fACBbN2A4Z8L6lBTLlHtpata8/yo0ScInb6G2snWQJaIpsktcK0Ax3GTu TegWCBkGuo172Tjbp5ix3NfEbWK4cykHTRzwuYQ6WhVvzSt8K7bQet7iEUBtNNUuOuDReM O+bWTw3mzbcX3ADdJuGYTiYYU3WaEyCrav8qthnSb22YiMevPY4dBauYwpjIbe5tP2EaF4 Q012zEctIx3IIcQ71KLu1kFU9+zqH3GzFIXNydzYp2d6+AtsijtL2GGtAvhLNxMFdCQZ1O Fb39wxpk4q4ixDWslWf8oP5m6ndLsKwBsaRL4pjEx+DC4uUfU3VWTnNe1sqfVg== Received: from smtp1.mailbox.org ([80.241.60.240]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id 4ycnb_F427pA; Mon, 29 Mar 2021 14:27:37 +0200 (CEST) From: Francesco Camuffo To: alpine-aports@lists.alpinelinux.org Cc: Francesco Camuffo Subject: [PATCH] testing/ugrep: new aport Date: Mon, 29 Mar 2021 14:26:56 +0200 Message-Id: <20210329122656.23688-1-dev@fmac.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-MBO-SPAM-Probability: X-Rspamd-Score: -6.47 / 15.00 / 15.00 X-Rspamd-Queue-Id: A9B4B1846 X-Rspamd-UID: cf9195 https://github.com/Genivia/ugrep/wiki Ultra fast grep with interactive query UI and fuzzy search --- testing/ugrep/APKBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testing/ugrep/APKBUILD diff --git a/testing/ugrep/APKBUILD b/testing/ugrep/APKBUILD new file mode 100644 index 0000000000..c6f288d142 --- /dev/null +++ b/testing/ugrep/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Francesco Camuffo +# Maintainer: Francesco Camuffo +pkgname=ugrep +pkgver=3.1.10 +pkgrel=0 +pkgdesc="Ultra fast grep with interactive query UI and fuzzy search" +url="https://github.com/Genivia/ugrep/wiki" +arch="all" +license="BSD 3-Clause License" +makedepends="bash bzip2-dev gcc lz4-dev pcre2-dev xz-dev zlib-dev" +subpackages="$pkgname-doc" +source=" + $pkgname-$pkgver.tar.gz::https://github.com/Genivia/ugrep/archive/refs/tags/v$pkgver.tar.gz +" + +build() { + ./build.sh --prefix=/usr +} + +check() { + make test +} + +package() { + make DESTDIR="$pkgdir" install + install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + +} + +sha512sums="fbd8e6bb62915450d15325a05cb3834ae2c4fe8a6abdf30357877d5785d7f60e37594e9c9de4ab4f536439f13da82d87dc15313d90d209e9b7fdff6f817e9e58 ugrep-3.1.10.tar.gz" -- 2.30.2