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

20 lines
663 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"
2018-06-23 23:53:15 +02:00
TERMUX_PKG_VERSION=2.24
TERMUX_PKG_SHA256=8361e5a2654bc575db27bfa40470c4182d74d51098d390944d98fe7cd5b20d49
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
}