mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 23:53:51 +02:00
git: add git-all.
This commit is contained in:
parent
fdcb68d51d
commit
f7c2a04c74
2 changed files with 25 additions and 19 deletions
1
srcpkgs/git-all
Symbolic link
1
srcpkgs/git-all
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
git
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for "git"
|
# Template file for "git"
|
||||||
pkgname=git
|
pkgname=git
|
||||||
version=2.4.0
|
version=2.4.0
|
||||||
revision=2
|
revision=3
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--with-curl --with-expat --with-tcltk
|
configure_args="--with-curl --with-expat --with-tcltk
|
||||||
ac_cv_fread_reads_directories=no ac_cv_snprintf_returns_bogus=no"
|
ac_cv_fread_reads_directories=no ac_cv_snprintf_returns_bogus=no"
|
||||||
|
@ -18,7 +18,7 @@ license="GPL-2"
|
||||||
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
|
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
|
||||||
checksum=b33438dd94659958a74850aacae4a2b3a626baec36d7f29c266130b08045bb24
|
checksum=b33438dd94659958a74850aacae4a2b3a626baec36d7f29c266130b08045bb24
|
||||||
|
|
||||||
subpackages="git-cvs git-svn git-perl gitk git-gui"
|
subpackages="git-cvs git-svn git-perl gitk git-gui git-all"
|
||||||
|
|
||||||
post_build() {
|
post_build() {
|
||||||
make ${makejobs} -C Documentation man
|
make ${makejobs} -C Documentation man
|
||||||
|
@ -74,23 +74,28 @@ git-svn_package() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
gitk_package() {
|
gitk_package() {
|
||||||
noarch=yes
|
noarch=yes
|
||||||
depends="git-${version}_${revision} tk"
|
depends="git-${version}_${revision} tk"
|
||||||
short_desc="The Git repository browser"
|
short_desc="The Git repository browser"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/bin/gitk
|
vmove usr/bin/gitk
|
||||||
vmove usr/share/gitk
|
vmove usr/share/gitk
|
||||||
vmove usr/share/man/man1/gitk.1
|
vmove usr/share/man/man1/gitk.1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
git-gui_package() {
|
git-gui_package() {
|
||||||
noarch=yes
|
noarch=yes
|
||||||
depends="git-${version}_${revision} tk"
|
depends="git-${version}_${revision} tk"
|
||||||
short_desc+=" - GUI tool"
|
short_desc+=" - GUI tool"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/libexec/git-core/git-gui--askpass
|
vmove usr/libexec/git-core/git-gui--askpass
|
||||||
vmove usr/libexec/git-core/git-gui
|
vmove usr/libexec/git-core/git-gui
|
||||||
vmove usr/share/man/man1/git-gui.1
|
vmove usr/share/man/man1/git-gui.1
|
||||||
vmove usr/share/git-gui
|
vmove usr/share/git-gui
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
git-all_package() {
|
||||||
|
noarch=yes
|
||||||
|
depends="${subpackages/git-all/}"
|
||||||
|
short_desc+=" - meta-package for complete Git installation"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue