44 lines
1.4 KiB
Text
44 lines
1.4 KiB
Text
# Template build file for "git".
|
|
pkgname=git
|
|
version=2.1.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-curl --with-expat --without-tcltk
|
|
ac_cv_fread_reads_directories=no ac_cv_snprintf_returns_bogus=no"
|
|
make_install_args="NO_INSTALL_HARDLINKS=1"
|
|
hostmakedepends="xmlto>=0.0.25_2 asciidoc perl python"
|
|
makedepends="libressl-devel libcurl-devel expat-devel"
|
|
# Required by https://
|
|
depends="ca-certificates"
|
|
replaces="git-docs>=0"
|
|
short_desc="GIT Tree History Storage Tool"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://git-scm.com/"
|
|
license="GPL-2"
|
|
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
|
|
checksum=7b27c8978bccf436f3c2b8c6142f35b236edd34ef7c778b1333166c098c7a18b
|
|
|
|
post_build() {
|
|
make ${makejobs} -C Documentation man
|
|
}
|
|
post_install() {
|
|
make NO_INSTALL_HARDLINKS=1 DESTDIR=${DESTDIR} install-doc
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
|
usr/share/bash-completion/completions git
|
|
vinstall contrib/completion/git-prompt.sh 644 usr/share/git
|
|
}
|
|
|
|
git-perl_package() {
|
|
noarch=yes
|
|
replaces="git<2.1.0_3"
|
|
depends="git perl-Authen-SASL perl-MIME-tools perl-Net-SMTP-SSL"
|
|
short_desc+=" - perl utilities"
|
|
pkg_install() {
|
|
for f in add--interactive archimport cvsexportcommit cvsimport \
|
|
cvsserver relink send-email svn; do
|
|
vmove usr/libexec/git-core/git-${f}
|
|
done
|
|
vmove usr/share/perl5
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|