wok-current annotate bazaar-tools/receipt @ rev 15828
bazaar-tools: I think cookutils only uses real wget when https is in WGET_URL.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Jan 24 10:50:53 2014 +0000 (2014-01-24) |
parents | a0881230bdd1 |
children | 16df76e1fc6a |
rev | line source |
---|---|
slaxemulator@8733 | 1 # SliTaz package receipt. |
slaxemulator@8733 | 2 |
slaxemulator@8733 | 3 PACKAGE="bazaar-tools" |
slaxemulator@15821 | 4 VERSION="2.6.0" |
slaxemulator@8733 | 5 CATEGORY="development" |
slaxemulator@8733 | 6 SHORT_DESC="Useful collection of utilities (all plugins, right now) for bazaar." |
slaxemulator@8733 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15482 | 8 LICENSE="GPL2" |
slaxemulator@8733 | 9 SOURCE="bzrtools" |
slaxemulator@8733 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
slaxemulator@8733 | 11 WEB_SITE="http://bazaar-vcs.org/BzrTools" |
slaxemulator@15828 | 12 WGET_URL="https://launchpad.net/$SOURCE/stable/$VERSION/+download/$TARBALL" |
slaxemulator@8733 | 13 |
pascal@15482 | 14 DEPENDS="bazaar python" |
pascal@15823 | 15 BUILD_DEPENDS="wget" |
pascal@15482 | 16 |
slaxemulator@8733 | 17 # Rules to configure and make the package. |
slaxemulator@8733 | 18 compile_rules() |
slaxemulator@8733 | 19 { |
slaxemulator@8733 | 20 cd $src |
slaxemulator@8733 | 21 python setup.py install --root=$DESTDIR |
slaxemulator@8733 | 22 } |
slaxemulator@8733 | 23 |
slaxemulator@8733 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@8733 | 25 genpkg_rules() |
slaxemulator@8733 | 26 { |
slaxemulator@8733 | 27 mkdir -p $fs/usr |
pascal@15482 | 28 cp -a $install/usr/lib $fs/usr |
slaxemulator@8733 | 29 } |
slaxemulator@8733 | 30 |