wok view mercurial/receipt @ rev 13220

Up python-httplib2 (0.7.4)
author Paul Issott <paul@slitaz.org>
date Sat Aug 11 22:48:41 2012 +0100 (2012-08-11)
parents 75229b0de14a
children 299e8a944f74
line source
1 # SliTaz package receipt.
3 PACKAGE="mercurial"
4 VERSION="2.3"
5 CATEGORY="development"
6 SHORT_DESC="Revision tools system."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://mercurial.selenic.com/"
10 WGET_URL="http://www.selenic.com/mercurial/release/$TARBALL"
11 CONFIG_FILES="/etc/mercurial/hgweb.config"
13 DEPENDS="python patch libssl"
14 BUILD_DEPENDS="python-dev patch openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 python setup.py install --root="$DESTDIR" --optimize=1
21 mkdir -p $DESTDIR/usr/share/examples/mercurial
22 cp -a $src/hgweb.cgi $DESTDIR/usr/share/examples/mercurial
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/examples/mercurial
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib $fs/usr
32 # Examples
33 cp -a $stuff/hgwebdir.cgi $fs/usr/share/examples/mercurial
34 cp -a $stuff/lighttpd-hg-vhost.conf $fs/usr/share/examples/mercurial
36 # Config file for hgweb
37 mkdir -p $fs/etc/mercurial
38 cp -a $stuff/hgweb.config $fs/etc/mercurial
40 chown -R root.root $fs
41 }