wok view bazaar/receipt @ rev 8114

Fix: lzma wrapper in xz package should now display usage correctly
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Jan 23 22:57:43 2011 +0100 (2011-01-23)
parents 38d232c76a55
children 7237c993389a
line source
1 # SliTaz package receipt.
3 PACKAGE="bazaar"
4 SOURCE="bzr"
5 VERSION="2.2.0"
6 CATEGORY="development"
7 SHORT_DESC="A free distributed version control system."
8 MAINTAINER="rcx@zoominternet.net"
9 DEPENDS="glibc-base zlib python"
10 BUILD_DEPENDS="python python-dev"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://bazaar-vcs.org/"
13 WGET_URL="http://launchpad.net/$SOURCE/${VERSION%.*}/$VERSION/+download/$TARBALL"
14 TAGS="dvcs version-control versioning"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 python setup.py install \
21 --prefix=/usr \
22 --root=$src/_pkg \
23 --no-compile
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib $fs/usr
32 }