wok annotate mercurial/receipt @ rev 3893

get-*: do not create empty packages
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Aug 14 10:01:38 2009 +0200 (2009-08-14)
parents e10aae8fb72a
children f25ac6310927
rev   line source
pankso@29 1 # SliTaz package receipt.
pankso@29 2
pankso@29 3 PACKAGE="mercurial"
pankso@500 4 VERSION="1.0"
pankso@204 5 CATEGORY="development"
pankso@29 6 SHORT_DESC="Revision tools system."
pankso@29 7 MAINTAINER="pankso@slitaz.org"
pankso@29 8 DEPENDS="python patch openssl"
pascal@1511 9 BUILD_DEPENDS="python-dev patch openssl-dev"
pankso@29 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@29 11 WEB_SITE="http://www.selenic.com/mercurial/wiki/"
pankso@29 12 WGET_URL="http://www.selenic.com/mercurial/release/$TARBALL"
pankso@29 13
pankso@29 14 # Rules to configure and make the package.
pankso@29 15 compile_rules()
pankso@29 16 {
pankso@29 17 cd $src
pankso@29 18 make install PREFIX=$PWD/_pkg/usr
pankso@29 19 }
pankso@29 20
pankso@29 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@29 22 genpkg_rules()
pankso@29 23 {
pankso@29 24 mkdir -p $fs/usr/share/examples/mercurial
pankso@29 25 cp -a $_pkg/usr/bin $fs/usr
pankso@29 26 cp -a $_pkg/usr/lib $fs/usr
pankso@29 27
pankso@29 28 # Examples
pankso@29 29 cp -a $src/hgweb.cgi $fs/usr/share/examples/mercurial
pankso@29 30 cp -a stuff/hgwebdir.cgi $fs/usr/share/examples/mercurial
pankso@29 31 cp -a stuff/lighttpd-hg-vhost.conf $fs/usr/share/examples/mercurial
pankso@29 32
pankso@29 33 # Config file for hgweb
pankso@29 34 mkdir -p $fs/etc/mercurial
pankso@29 35 cp -a stuff/hgweb.config $fs/etc/mercurial
pankso@29 36
pankso@29 37 chown -R root.root $fs
pankso@29 38 }