summaryrefslogtreecommitdiffhomepage
path: root/vars/git.vars
blob: b89062bd04aa8daaa913550187298f1d176b9a25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# set -o errexit -o noglob are assumed.
#

pkg_git_install_post() {
	local __ _new;
	for __ in $(find "${PWD}/../destdir/share/man" -name "Git*::*" -type f); do
		_new="$(echo ${__} | sed "s/::/./g")";
		build_fileop mv "${__}" "${_new}";
	done;
};

# vim:filetype=sh