contrib/mercurial/Pkgfile

23 lines
570 B
Plaintext
Raw Normal View History

# Description: Mercurial the distributed VCS.
2021-02-06 11:42:04 +01:00
# URL: https://www.mercurial-scm.org
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
2006-10-29 12:38:47 +01:00
name=mercurial
2024-03-30 16:52:42 +01:00
version=6.7.2
2013-04-12 10:16:16 +02:00
release=1
2016-12-13 00:33:05 +01:00
source=(https://www.mercurial-scm.org/release/mercurial-$version.tar.gz)
2006-10-29 12:38:47 +01:00
build() {
2008-03-25 21:22:19 +01:00
cd $name-$version
2014-06-09 22:45:16 +02:00
rm -r i18n
2020-06-08 20:48:28 +02:00
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --root=$PKG \
--skip-build
2020-06-08 20:48:28 +02:00
2016-06-10 08:36:40 +02:00
install -d $PKG/usr/share/man/man{1,5}
install -m 0644 doc/*.1 $PKG/usr/share/man/man1
install -m 0644 doc/*.5 $PKG/usr/share/man/man5
2006-10-29 12:38:47 +01:00
}