wok-current annotate speedometer/receipt @ rev 24743
updated libffi and libffi-dev (3.3 -> 3.4.2)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 16 10:41:57 2022 +0100 (2022-03-16) |
parents | 3b4e4318134e |
children | cb67b4f8be05 |
rev | line source |
---|---|
paul@5240 | 1 # SliTaz package receipt. |
paul@5240 | 2 |
paul@5240 | 3 PACKAGE="speedometer" |
paul@13664 | 4 VERSION="2.8" |
paul@5240 | 5 CATEGORY="utilities" |
paul@5240 | 6 SHORT_DESC="Measure and display rate of data across a network connection." |
paul@5240 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15593 | 8 LICENSE="LGPL2.1" |
paul@5240 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@5240 | 10 WEB_SITE="http://excess.org/speedometer/" |
paul@5240 | 11 WGET_URL="http://excess.org/speedometer/$TARBALL" |
paul@5240 | 12 |
pascal@15593 | 13 DEPENDS="python python-urwid" |
pascal@15593 | 14 |
pascal@24462 | 15 # What is the latest version available today? |
pascal@24462 | 16 current_version() |
pascal@24462 | 17 { |
pascal@24462 | 18 wget -O - https://github.com/wardi/speedometer/tags 2>/dev/null | \ |
pascal@24462 | 19 sed '/archive.*tar/!d;s|.*/[a-z-]*\(.*\).tar.*|\1|;q' |
pascal@24462 | 20 } |
pascal@24462 | 21 |
paul@5240 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@5240 | 23 genpkg_rules() |
paul@5240 | 24 { |
paul@5240 | 25 mkdir -p $fs/usr/bin |
paul@5240 | 26 cp $src/speedometer.py $fs/usr/bin/speedometer |
paul@5240 | 27 } |