void-packages/srcpkgs/mercurial/template
2016-09-02 12:00:19 +02:00

26 lines
914 B
Bash

# Template file for 'mercurial'
pkgname=mercurial
version=3.9.1
revision=1
build_style=python-module
hostmakedepends="python-devel"
makedepends="python-devel"
depends="ca-certificates"
pycompile_module="mercurial hgext hgext3rd"
short_desc="Fast, lightweight source control management system"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-2"
homepage="https://www.mercurial-scm.org/"
distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
checksum=625e4fc7e85ec2278c2828bdc547fce74091b3bbe4d9eeeba2d61af51195df74
post_install() {
vmkdir usr/share/man/man1
vmkdir usr/share/man/man5
install -m644 doc/*.1 ${DESTDIR}/usr/share/man/man1
install -m644 doc/*.5 ${DESTDIR}/usr/share/man/man5
install -m644 -D contrib/bash_completion \
${DESTDIR}/usr/share/bash-completion/completions/hg
install -m644 -D contrib/zsh_completion \
${DESTDIR}/usr/share/zsh/site-functions/_hg
}