mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:57:17 +08:00
38 lines
1.5 KiB
Bash
38 lines
1.5 KiB
Bash
# Contributor Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
|
|
pkgname=mercurial
|
|
pkgver=2.0.2
|
|
pkgrel=1
|
|
pkgdesc="A scalable distributed SCM tool"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.selenic.com/mercurial"
|
|
license=('GPL')
|
|
depends=('python2')
|
|
optdepends=('tk: for the hgk GUI')
|
|
source=("http://www.selenic.com/mercurial/release/${pkgname}-${pkgver}.tar.gz"
|
|
mercurial.profile)
|
|
md5sums=('226b45f19bebf73446fcd73ccb678c52'
|
|
'43e1d36564d4c7fbe9a091d3ea370a44')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
python2 setup.py install --root="${pkgdir}" --optimize=1 || return 1
|
|
|
|
install -d ${pkgdir}/usr/share/man/{man1,man5}
|
|
install -m644 doc/hg.1 "${pkgdir}/usr/share/man/man1" || return 1
|
|
install -m644 doc/{hgrc.5,hgignore.5} "${pkgdir}/usr/share/man/man5" || return 1
|
|
install -m755 contrib/hgk "${pkgdir}/usr/bin" || return 1
|
|
install -m644 -D contrib/zsh_completion "${pkgdir}/usr/share/zsh/site-functions/_hg" || return 1
|
|
install -m644 -D contrib/bash_completion "${pkgdir}/etc/bash_completion.d/hg" || return 1
|
|
install -d "${pkgdir}/usr/share/emacs/site-lisp"
|
|
install -m644 contrib/{mq.el,mercurial.el} "${pkgdir}/usr/share/emacs/site-lisp" || return 1
|
|
|
|
vimpath="${pkgdir}/usr/share/vim/vimfiles"
|
|
install -Dm644 contrib/vim/HGAnnotate.vim "${vimpath}/syntax/HGAnnotate.vim" || return 1
|
|
|
|
# set some variables
|
|
install -m755 -d ${pkgdir}/etc/profile.d
|
|
install -m755 ${srcdir}/mercurial.profile "${pkgdir}/etc/profile.d/mercurial.sh" || return 1
|
|
}
|