wok view bazaar/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents 223b265f40fd
children 11b5e93cb5f2
line source
1 # SliTaz package receipt.
3 PACKAGE="bazaar"
4 VERSION="2.6.0"
5 CATEGORY="development"
6 SHORT_DESC="A free distributed version control system."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL2"
9 SOURCE="bzr"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://bazaar-vcs.org/"
12 WGET_URL="https://launchpad.net/$SOURCE/${VERSION:0:3}/$VERSION/+download/$TARBALL"
13 TAGS="dvcs version-control versioning"
15 DEPENDS="glibc-base zlib python"
16 BUILD_DEPENDS="python python-dev wget"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 python setup.py install \
22 --prefix=/usr \
23 --root=$DESTDIR \
24 --no-compile
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 }