From: Fredrik Fornwall Date: Thu, 3 Dec 2015 22:10:27 +0000 (-0500) Subject: Add ack-grep package X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/6b70c5ef9ae35269dbaf1a3083689cde8d73e660?hp=--cc Add ack-grep package --- 6b70c5ef9ae35269dbaf1a3083689cde8d73e660 diff --git a/packages/ack-grep/build.sh b/packages/ack-grep/build.sh new file mode 100644 index 00000000..b5ee0676 --- /dev/null +++ b/packages/ack-grep/build.sh @@ -0,0 +1,11 @@ +TERMUX_PKG_HOMEPAGE=http://beyondgrep.com/ +TERMUX_PKG_DESCRIPTION="Tool like grep optimized for programmers" +TERMUX_PKG_VERSION=2.14 +# Depend on coreutils for bin/env. +TERMUX_PKG_DEPENDS="perl, coreutils" +TERMUX_PKG_PLATFORM_INDEPENDENT=yes + +termux_step_make_install () { + curl -o $TERMUX_PREFIX/bin/ack http://beyondgrep.com/ack-${TERMUX_PKG_VERSION}-single-file + chmod +x $TERMUX_PREFIX/bin/ack +}