termux-packages/packages/ack-grep/build.sh

20 lines
662 B
Bash
Raw Normal View History

2017-05-22 23:51:38 +02:00
TERMUX_PKG_HOMEPAGE=https://beyondgrep.com/
2015-12-03 23:10:27 +01:00
TERMUX_PKG_DESCRIPTION="Tool like grep optimized for programmers"
2019-01-20 22:39:59 +01:00
TERMUX_PKG_LICENSE="Artistic-License-2.0"
2019-04-13 09:20:00 +02:00
TERMUX_PKG_VERSION=2.28
TERMUX_PKG_SHA256=0ab3df19513a2c71aa7901f7f522a5baf72ce69e6e0e34879979f157210734f6
TERMUX_PKG_SRCURL=https://beyondgrep.com/ack-${TERMUX_PKG_VERSION}-single-file
TERMUX_PKG_SKIP_SRC_EXTRACT=yes
2017-07-10 00:05:36 +02:00
# Depend on coreutils for bin/env
2015-12-03 23:10:27 +01:00
TERMUX_PKG_DEPENDS="perl, coreutils"
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
termux_step_make_install() {
2017-05-22 23:51:38 +02:00
termux_download \
$TERMUX_PKG_SRCURL \
2017-05-22 23:51:38 +02:00
$TERMUX_PREFIX/bin/ack \
$TERMUX_PKG_SHA256
2017-05-22 23:51:38 +02:00
touch $TERMUX_PREFIX/bin/ack
2015-12-03 23:10:27 +01:00
chmod +x $TERMUX_PREFIX/bin/ack
}