27 lines
904 B
Bash
27 lines
904 B
Bash
# Template file for 'mercurial'
|
|
pkgname=mercurial
|
|
version=3.5.2
|
|
revision=1
|
|
lib32disabled=yes
|
|
build_style=python-module
|
|
hostmakedepends="python-devel"
|
|
makedepends="python-devel"
|
|
depends="ca-certificates"
|
|
pycompile_module="mercurial hgext"
|
|
short_desc="Fast, lightweight source control management system"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://mercurial.selenic.com"
|
|
distfiles="${homepage}/release/${pkgname}-${version}.tar.gz"
|
|
checksum=23fdc038503911b21dc9e556118803f7b1d4150eb14933d2ea3d0ff0dc60ab5d
|
|
|
|
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
|
|
}
|