blob: a8c8e2a3cfff3782a96006129862da3a34013e80 (
plain)
1 # Description: Mercurial the distributed VCS.
2 # URL: https://www.mercurial-scm.org
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: python3
5
6 name=mercurial
7 version=5.3.2
8 release=1
9 source=(https://www.mercurial-scm.org/release/mercurial-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 rm -r i18n
14
15 /usr/bin/python3 setup.py install --root=$PKG
16
17 install -d $PKG/usr/share/man/man{1,5}
18 install -m 0644 doc/*.1 $PKG/usr/share/man/man1
19 install -m 0644 doc/*.5 $PKG/usr/share/man/man5
20
21 }
|