wok-next annotate mercurial/receipt @ rev 4651
Add openvas-administrator
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Dec 27 11:40:59 2009 +0100 (2009-12-27) |
parents | 3d99ecce2d4b |
children | 4fa548ee5917 |
rev | line source |
---|---|
pankso@29 | 1 # SliTaz package receipt. |
pankso@29 | 2 |
pankso@29 | 3 PACKAGE="mercurial" |
pankso@4464 | 4 VERSION="1.3.1" |
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@4464 | 11 WEB_SITE="http://mercurial.selenic.com/" |
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@4464 | 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@4464 | 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@4464 | 36 |
pankso@29 | 37 chown -R root.root $fs |
pankso@29 | 38 } |