77 lines
2.4 KiB
Bash
77 lines
2.4 KiB
Bash
# Template file for "git"
|
|
pkgname=git
|
|
version=2.3.5
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-curl --with-expat --with-tcltk
|
|
ac_cv_fread_reads_directories=no ac_cv_snprintf_returns_bogus=no"
|
|
make_install_args="NO_INSTALL_HARDLINKS=1"
|
|
hostmakedepends="xmlto asciidoc perl python tk"
|
|
makedepends="libressl-devel libcurl-devel expat-devel tk-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=d7711324a58d41b4c46d1e4d560ce17fec5f79fa0311107c15aac866f2c1645a
|
|
|
|
subpackages="git-svn git-perl gitk git-gui"
|
|
|
|
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
|
|
depends="git>=${version}_${revision} 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 difftool difftool--helper relink send-email; do
|
|
vmove usr/libexec/git-core/git-${f}
|
|
done
|
|
vmove usr/share/perl5
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|
|
git-svn_package() {
|
|
depends="git-perl>=${version}_${revision} subversion-perl perl-Term-ReadKey"
|
|
short_desc+=" - subversion support"
|
|
pkg_install() {
|
|
vmove "usr/share/perl5/site_perl/Git/SVN*"
|
|
vmove usr/libexec/git-core/git-remote-testsvn
|
|
vmove usr/libexec/git-core/git-svn
|
|
vmove usr/share/man/man1/git-svn.1
|
|
vmove "usr/share/man/man3/Git::SVN*"
|
|
}
|
|
}
|
|
gitk_package() {
|
|
noarch=yes
|
|
depends="git>=${version}_${revision} tk"
|
|
short_desc="The Git repository browser"
|
|
pkg_install() {
|
|
vmove usr/bin/gitk
|
|
vmove usr/share/gitk
|
|
vmove usr/share/man/man1/gitk.1
|
|
}
|
|
}
|
|
git-gui_package() {
|
|
noarch=yes
|
|
depends="git>=${version}_${revision} tk"
|
|
short_desc+="A portable graphical interface to Git"
|
|
pkg_install() {
|
|
vmove usr/libexec/git-core/git-gui--askpass
|
|
vmove usr/libexec/git-core/git-gui
|
|
vmove usr/share/man/man1/git-gui.1
|
|
vmove usr/share/git-gui/
|
|
}
|
|
}
|