wok view bazaar/receipt @ rev 8653

Up: tazwok-experimental to 0.0.6.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Feb 15 23:23:35 2011 +0000 (2011-02-15)
parents 7dd4aea53785
children b482856e3671
line source
1 # SliTaz package receipt.
3 PACKAGE="bazaar"
4 SOURCE="bzr"
5 VERSION="2.3.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 }