wok annotate trickle/receipt @ rev 17410

Add trickle
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 29 11:26:00 2014 +0100 (2014-11-29)
parents
children 7a3e592e7c6a
rev   line source
pascal@17410 1 # SliTaz package receipt.
pascal@17410 2
pascal@17410 3 PACKAGE="trickle"
pascal@17410 4 HASH=17ed72d9f10b1be38cea333e7ed7875a3cc9fb7b
pascal@17410 5 VERSION="${HASH:0:7}"
pascal@17410 6 CATEGORY="network"
pascal@17410 7 SHORT_DESC="A portable lightweight userspace bandwidth shaper"
pascal@17410 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17410 9 LICENSE="BSD"
pascal@17410 10 TARBALL="$PACKAGE-$VERSION.zip"
pascal@17410 11 WEB_SITE="http://monkey.org/~marius/pages/?page=trickle"
pascal@17410 12 WGET_URL="https://github.com/mariusae/trickle/archive/$HASH.zip"
pascal@17410 13
pascal@17410 14 DEPEND="libevent"
pascal@17410 15 BUILD_DEPENDS="libevent-dev wget"
pascal@17410 16
pascal@17410 17 # Rules to configure and make the package.
pascal@17410 18 compile_rules()
pascal@17410 19 {
pascal@17410 20 touch libtrickle.so
pascal@17410 21 ./configure --prefix=/usr \
pascal@17410 22 $CONFIGURE_ARGS &&
pascal@17410 23 make &&
pascal@17410 24 make DESTDIR=$DESTDIR install
pascal@17410 25 }
pascal@17410 26
pascal@17410 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17410 28 genpkg_rules()
pascal@17410 29 {
pascal@17410 30 mkdir -p $fs/usr
pascal@17410 31 cp -a $install/usr/bin $fs/usr
pascal@17410 32 }