git: add diff-highlight, git contacts and git jump

This commit is contained in:
Piotr Wójcik 2019-07-15 20:40:49 +02:00 committed by Piotr
parent cbb690e665
commit f9d8aa8293

View file

@ -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
}