wok annotate bazaar-tools/receipt @ rev 11017

ssfs-busybox: wanted busybox
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 13 16:56:20 2011 +0200 (2011-10-13)
parents 00df615e199a
children 8d6f480bf664
rev   line source
slaxemulator@8733 1 # SliTaz package receipt.
slaxemulator@8733 2
slaxemulator@8733 3 PACKAGE="bazaar-tools"
slaxemulator@11013 4 VERSION="2.4.1"
slaxemulator@8733 5 CATEGORY="development"
slaxemulator@8733 6 SHORT_DESC="Useful collection of utilities (all plugins, right now) for bazaar."
slaxemulator@8733 7 MAINTAINER="slaxemulator@gmail.com"
slaxemulator@8733 8 DEPENDS="bazaar python"
slaxemulator@8733 9 SOURCE="bzrtools"
slaxemulator@8733 10 TARBALL="$SOURCE-$VERSION.tar.gz"
slaxemulator@8733 11 WEB_SITE="http://bazaar-vcs.org/BzrTools"
slaxemulator@11013 12 WGET_URL="http://launchpad.net/$SOURCE/stable/$VERSION/+download/$TARBALL"
slaxemulator@8733 13
slaxemulator@8733 14 # Rules to configure and make the package.
slaxemulator@8733 15 compile_rules()
slaxemulator@8733 16 {
slaxemulator@8733 17 cd $src
slaxemulator@8733 18 python setup.py install --root=$DESTDIR
slaxemulator@8733 19 }
slaxemulator@8733 20
slaxemulator@8733 21 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@8733 22 genpkg_rules()
slaxemulator@8733 23 {
slaxemulator@8733 24 mkdir -p $fs/usr
slaxemulator@8733 25 cp -a $_pkg/usr/lib $fs/usr
slaxemulator@8733 26 }
slaxemulator@8733 27