# HG changeset patch # User Christopher Rogers # Date 1318476239 0 # Node ID a802e6cbce6ea8d175105d56f3e03df2dcf45554 # Parent 9c5e2fdf739d1aa64f314d073fe6c532856de75e Up: bazaar to 2.4.1. diff -r 9c5e2fdf739d -r a802e6cbce6e bazaar/receipt --- a/bazaar/receipt Thu Oct 13 03:19:40 2011 +0000 +++ b/bazaar/receipt Thu Oct 13 03:23:59 2011 +0000 @@ -1,25 +1,26 @@ # SliTaz package receipt. PACKAGE="bazaar" -SOURCE="bzr" -VERSION="2.3.1" +VERSION="2.4.1" CATEGORY="development" SHORT_DESC="A free distributed version control system." MAINTAINER="rcx@zoominternet.net" -DEPENDS="glibc-base zlib python" -BUILD_DEPENDS="python python-dev" +SOURCE="bzr" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://bazaar-vcs.org/" WGET_URL="http://launchpad.net/$SOURCE/${VERSION%.*}/$VERSION/+download/$TARBALL" TAGS="dvcs version-control versioning" +DEPENDS="glibc-base zlib python" +BUILD_DEPENDS="python python-dev" + # Rules to configure and make the package. compile_rules() { cd $src python setup.py install \ --prefix=/usr \ - --root=$src/_pkg \ + --root=$DESTDIR \ --no-compile } @@ -27,6 +28,6 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/lib $fs/usr + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib $fs/usr }