void-packages/srcpkgs/git/git-docs.template
Juan RP a836db69c0 git: added docs subpkg that contains the manpages.
--HG--
extra : convert_revision : b593dd071f52d1985957283d617ab994a3fb526f
2009-11-26 23:05:13 +01:00

17 lines
332 B
Plaintext

# Template file for 'git-docs'.
#
short_desc="${sourcepkg} documentation"
long_desc="${long_desc}
This package contains the full git documentation (manual pages)."
noarch=yes
do_install()
{
mkdir -p ${DESTDIR}/usr/share/man
for f in man1 man5 man7; do
mv ${SRCPKGDESTDIR}/usr/share/man/${f} ${DESTDIR}/usr/share/man
done
}