termux-packages/packages/bat/build.sh

23 lines
815 B
Bash
Raw Normal View History

TERMUX_PKG_HOMEPAGE=https://github.com/sharkdp/bat
TERMUX_PKG_DESCRIPTION="A cat(1) clone with wings"
2019-01-20 22:39:59 +01:00
TERMUX_PKG_LICENSE="Apache-2.0"
2020-03-29 21:02:04 +02:00
TERMUX_PKG_VERSION=0.13.0
TERMUX_PKG_SRCURL=https://github.com/sharkdp/bat/archive/v$TERMUX_PKG_VERSION.tar.gz
2020-03-29 21:02:04 +02:00
TERMUX_PKG_SHA256=f4aee370013e2a3bc84c405738ed0ab6e334d3a9f22c18031a7ea008cd5abd2a
2019-01-19 09:58:17 +01:00
# bat calls less with '--RAW-CONTROL-CHARS' which busybox less does not support:
2019-04-14 17:46:58 +02:00
TERMUX_PKG_DEPENDS="less, zlib"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
CFLAGS="$CFLAGS $CPPFLAGS"
2019-09-10 22:09:37 +02:00
# See https://github.com/nagisa/rust_libloading/issues/54
export CC_x86_64_unknown_linux_gnu=gcc
export CFLAGS_x86_64_unknown_linux_gnu=""
}
termux_step_post_make_install() {
2018-10-18 05:51:48 +02:00
mkdir -p $TERMUX_PREFIX/share/man/man1
cp $TERMUX_PKG_SRCDIR/doc/bat.1 $TERMUX_PREFIX/share/man/man1/
}