wok annotate bazaar/receipt @ rev 4514

Up:gutenprint; Add gutenprint-dev
author Rohit Joshi <jozee@slitaz.org>
date Thu Nov 26 12:07:22 2009 +0000 (2009-11-26)
parents fd182f8fab15
children 4273e906522b
rev   line source
rcx@3569 1 # SliTaz package receipt.
rcx@3569 2
rcx@3569 3 PACKAGE="bazaar"
rcx@3569 4 SOURCE="bzr"
rcx@3569 5 VERSION="1.16"
rcx@3569 6 CATEGORY="development"
rcx@3569 7 SHORT_DESC="A free distributed version control system."
rcx@3569 8 MAINTAINER="rcx@zoominternet.net"
rcx@3570 9 DEPENDS="glibc-base zlib python"
rcx@3569 10 BUILD_DEPENDS="python python-dev"
rcx@3569 11 TARBALL="$SOURCE-$VERSION.tar.gz"
rcx@3569 12 WEB_SITE="http://bazaar-vcs.org/"
rcx@3569 13 WGET_URL="http://launchpad.net/$SOURCE/1.16/$VERSION/+download/$TARBALL"
rcx@3569 14
rcx@3569 15 # Rules to configure and make the package.
rcx@3569 16 compile_rules()
rcx@3569 17 {
rcx@3569 18 cd $src
rcx@3569 19 python setup.py install \
rcx@3569 20 --prefix=/usr \
rcx@3569 21 --root=$src/_pkg \
rcx@3569 22 --no-compile
rcx@3569 23 }
rcx@3569 24
rcx@3569 25 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3569 26 genpkg_rules()
rcx@3569 27 {
rcx@3569 28 mkdir -p $fs/usr
rcx@3569 29 cp -a $_pkg/usr/bin $fs/usr
rcx@3569 30 cp -a $_pkg/usr/lib $fs/usr
rcx@3569 31 }