wok annotate bazaar/receipt @ rev 5195

slitaz-doc: fix version for 3.0
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 17:16:33 2010 +0200 (2010-03-28)
parents 9d636f54dbd4
children 38d232c76a55
rev   line source
rcx@3569 1 # SliTaz package receipt.
rcx@3569 2
rcx@3569 3 PACKAGE="bazaar"
rcx@3569 4 SOURCE="bzr"
rcx@3569 5 VERSION="1.16"
rcx@3569 6 CATEGORY="development"
rcx@3569 7 SHORT_DESC="A free distributed version control system."
rcx@3569 8 MAINTAINER="rcx@zoominternet.net"
rcx@3570 9 DEPENDS="glibc-base zlib python"
rcx@3569 10 BUILD_DEPENDS="python python-dev"
rcx@3569 11 TARBALL="$SOURCE-$VERSION.tar.gz"
rcx@3569 12 WEB_SITE="http://bazaar-vcs.org/"
rcx@3569 13 WGET_URL="http://launchpad.net/$SOURCE/1.16/$VERSION/+download/$TARBALL"
jozee@4932 14 TAGS="version-control versioning"
rcx@3569 15
rcx@3569 16 # Rules to configure and make the package.
rcx@3569 17 compile_rules()
rcx@3569 18 {
rcx@3569 19 cd $src
rcx@3569 20 python setup.py install \
rcx@3569 21 --prefix=/usr \
rcx@3569 22 --root=$src/_pkg \
rcx@3569 23 --no-compile
rcx@3569 24 }
rcx@3569 25
rcx@3569 26 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3569 27 genpkg_rules()
rcx@3569 28 {
rcx@3569 29 mkdir -p $fs/usr
rcx@3569 30 cp -a $_pkg/usr/bin $fs/usr
rcx@3569 31 cp -a $_pkg/usr/lib $fs/usr
rcx@3569 32 }