contrib/mercurial/Pkgfile
2013-07-06 20:09:03 +02:00

23 lines
614 B
Plaintext

# Description: Mercurial the distributed VCS.
# URL: http://www.selenic.com/mercurial/wiki/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Depends on: python
name=mercurial
version=2.6.3
release=1
source=(http://www.selenic.com/$name/release/$name-$version.tar.gz)
build() {
cd $name-$version
python setup.py install --root=$PKG
install -d $PKG/usr/man/man{1,5}
install -m 0644 doc/*.1 $PKG/usr/man/man1
install -m 0644 doc/*.5 $PKG/usr/man/man5
rm -r $PKG/usr/lib/python*/site-packages/mercurial/locale
}