wok-current view bazaar/receipt @ rev 14590
drbl: its really hard to find all deps - ok, add some of them; also shrink loooong 'short desc' and add description
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Mon May 27 00:27:59 2013 +0000 (2013-05-27) |
parents | e1085ba13110 |
children | 223b265f40fd |
line source
1 # SliTaz package receipt.
3 PACKAGE="bazaar"
4 VERSION="2.5.1"
5 CATEGORY="development"
6 SHORT_DESC="A free distributed version control system."
7 MAINTAINER="rcx@zoominternet.net"
8 SOURCE="bzr"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://bazaar-vcs.org/"
11 WGET_URL="https://launchpad.net/$SOURCE/${VERSION:0:3}/$VERSION/+download/$TARBALL"
12 TAGS="dvcs version-control versioning"
14 DEPENDS="glibc-base zlib python"
15 BUILD_DEPENDS="python python-dev wget"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py install \
21 --prefix=/usr \
22 --root=$DESTDIR \
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 $install/usr/bin $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 }