git-delta: update to 0.3.0

This commit is contained in:
Henrik Grimler 2020-07-20 22:27:35 +02:00
parent f0a720d89d
commit f7a0762640
1 changed files with 3 additions and 4 deletions

View File

@ -1,10 +1,9 @@
TERMUX_PKG_HOMEPAGE=https://github.com/dandavison/delta
TERMUX_PKG_DESCRIPTION="A syntax-highlighter for git and diff output"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_VERSION=0.1.1
TERMUX_PKG_REVISION=1
TERMUX_PKG_VERSION=0.3.0
TERMUX_PKG_SRCURL=https://github.com/dandavison/delta/archive/${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=50519e97310b54ddb485635ac8e0984670d4ae64fc7fd4a5ed2b67cc6b77347f
TERMUX_PKG_SHA256=4ff8d5864306f130be8e0da3d8013bcc4ece082835d4cc5395775c669111ed77
TERMUX_PKG_DEPENDS="git"
TERMUX_PKG_BUILD_IN_SRC=true
@ -17,6 +16,6 @@ termux_step_pre_configure() {
termux_step_post_make_install() {
install -Dm700 -t "$TERMUX_PREFIX"/bin \
"$TERMUX_PKG_SRCDIR/target/$CARGO_TARGET_NAME"/release/delta
install -Dm600 "$TERMUX_PKG_SRCDIR"/completion/bash/completion.sh \
install -Dm600 "$TERMUX_PKG_SRCDIR"/completion/completion.bash \
"$TERMUX_PREFIX"/share/bash-completion/completions/delta
}