From f9d8aa8293c266755794c1dcf5169704a3bed1a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= Date: Mon, 15 Jul 2019 20:40:49 +0200 Subject: [PATCH] git: add diff-highlight, git contacts and git jump --- srcpkgs/git/template | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/srcpkgs/git/template b/srcpkgs/git/template index 11630afb5a0..f4a194643ce 100644 --- a/srcpkgs/git/template +++ b/srcpkgs/git/template @@ -1,7 +1,7 @@ # Template file for 'git' pkgname=git version=2.22.0 -revision=3 +revision=4 build_style=gnu-configure configure_args="--with-curl --with-expat --with-tcltk --with-libpcre2 ac_cv_snprintf_returns_bogus=no" @@ -31,6 +31,8 @@ esac post_build() { make ${makejobs} -C Documentation man + make ${makejobs} -C contrib/contacts all git-contacts.1 + make ${makejobs} -C contrib/diff-highlight all make ${makejobs} -C contrib/subtree all git-subtree.1 make ${makejobs} -C contrib/credential/libsecret } @@ -40,6 +42,11 @@ post_install() { vinstall contrib/completion/git-completion.bash 644 \ usr/share/bash-completion/completions git vinstall contrib/completion/git-prompt.sh 644 usr/share/git + make -C contrib/contacts DESTDIR=${DESTDIR} prefix=/usr install install-man + vbin contrib/diff-highlight/diff-highlight + vinstall contrib/diff-highlight/README 644 usr/share/doc/git-diff-highlight + vinstall contrib/git-jump/git-jump 755 usr/libexec/git-core + vinstall contrib/git-jump/README 644 usr/share/doc/git-jump make -C contrib/subtree DESTDIR=${DESTDIR} prefix=/usr install install-man vinstall contrib/credential/libsecret/git-credential-libsecret 755 usr/libexec/git-core }