wok annotate mercurial/receipt @ rev 15207

Add mktorrent
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 10 12:15:52 2013 +0000 (2013-09-10)
parents a93f37871107
children c0003b8e85c9
rev   line source
pankso@29 1 # SliTaz package receipt.
pankso@29 2
pankso@29 3 PACKAGE="mercurial"
samuel_trassare@13904 4 VERSION="2.4.2"
pankso@204 5 CATEGORY="development"
pankso@29 6 SHORT_DESC="Revision tools system."
pankso@29 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pankso@29 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@4464 10 WEB_SITE="http://mercurial.selenic.com/"
pankso@29 11 WGET_URL="http://www.selenic.com/mercurial/release/$TARBALL"
pankso@5646 12 CONFIG_FILES="/etc/mercurial/hgweb.config"
pankso@29 13
pankso@10472 14 DEPENDS="python patch libssl"
pankso@10472 15 BUILD_DEPENDS="python-dev patch openssl-dev"
pankso@10472 16
pankso@29 17 # Rules to configure and make the package.
pankso@29 18 compile_rules()
pankso@29 19 {
slaxemulator@9446 20 python setup.py install --root="$DESTDIR" --optimize=1
slaxemulator@9446 21 mkdir -p $DESTDIR/usr/share/examples/mercurial
slaxemulator@9446 22 cp -a $src/hgweb.cgi $DESTDIR/usr/share/examples/mercurial
pankso@29 23 }
pankso@29 24
pankso@29 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@29 26 genpkg_rules()
pankso@29 27 {
pankso@29 28 mkdir -p $fs/usr/share/examples/mercurial
slaxemulator@12998 29 cp -a $install/usr/bin $fs/usr
slaxemulator@12998 30 cp -a $install/usr/lib $fs/usr
pankso@4464 31
pankso@29 32 # Examples
slaxemulator@9446 33 cp -a $stuff/hgwebdir.cgi $fs/usr/share/examples/mercurial
slaxemulator@9446 34 cp -a $stuff/lighttpd-hg-vhost.conf $fs/usr/share/examples/mercurial
pankso@4464 35
pankso@29 36 # Config file for hgweb
pankso@29 37 mkdir -p $fs/etc/mercurial
slaxemulator@9446 38 cp -a $stuff/hgweb.config $fs/etc/mercurial
slaxemulator@7117 39
pankso@29 40 chown -R root.root $fs
pankso@29 41 }