wok-6.x view bazaar/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
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 }