wok annotate trickle/receipt @ rev 19947
vmtouch: fix build
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sun May 07 16:28:32 2017 +0100 (2017-05-07) |
parents | 7a3e592e7c6a |
children | ff9bdf719828 |
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@17482 | 14 DEPENDS="libevent" |
pascal@17413 | 15 BUILD_DEPENDS="libevent-dev wget automake autoconf libtool" |
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@17413 | 21 aclocal |
pascal@17413 | 22 autoconf |
pascal@17413 | 23 automake --add-missing |
pascal@17410 | 24 ./configure --prefix=/usr \ |
pascal@17410 | 25 $CONFIGURE_ARGS && |
pascal@17410 | 26 make && |
pascal@17410 | 27 make DESTDIR=$DESTDIR install |
pascal@17410 | 28 } |
pascal@17410 | 29 |
pascal@17410 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17410 | 31 genpkg_rules() |
pascal@17410 | 32 { |
pascal@17410 | 33 mkdir -p $fs/usr |
pascal@17410 | 34 cp -a $install/usr/bin $fs/usr |
pascal@17410 | 35 } |