24 lines
785 B
Bash
24 lines
785 B
Bash
# Template file for 'mercurial'
|
|
pkgname=mercurial
|
|
version=5.3.2
|
|
revision=1
|
|
build_style=python3-module
|
|
hostmakedepends="python3 python3-setuptools python3-devel"
|
|
makedepends="python3-devel"
|
|
depends="python3 ca-certificates"
|
|
short_desc="Fast, lightweight source control management system"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://www.mercurial-scm.org/"
|
|
distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
|
|
checksum=fed24cbc314d31b0780309ee324c38d45476f00f555969551badcc2a1d5f1329
|
|
|
|
post_install() {
|
|
for i in doc/*.1 doc/*.8 doc/*.5 ; do
|
|
vman $i
|
|
done
|
|
vinstall contrib/bash_completion 644 \
|
|
usr/share/bash-completion/completions/hg
|
|
vinstall contrib/zsh_completion 644 \
|
|
usr/share/zsh/site-functions/_hg
|
|
}
|