wok annotate ttyload/receipt @ rev 21590
updated obby and obby-dev (0.4.7 -> 0.4.8)
author | Hans-G?nter Theisgen |
---|---|
date | Mon May 20 17:01:05 2019 +0100 (2019-05-20) |
parents | 23c3aed67cd9 |
children | 3d96b88308b0 |
rev | line source |
---|---|
pascal@1740 | 1 # SliTaz package receipt. |
pascal@1740 | 2 |
pascal@1740 | 3 PACKAGE="ttyload" |
pascal@1740 | 4 VERSION="0.5" |
pascal@1740 | 5 CATEGORY="system-tools" |
pascal@1740 | 6 SHORT_DESC="color-coded graph of load averages over time." |
pascal@1740 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15601 | 8 LICENSE="ISC" |
pascal@1740 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@21302 | 10 WEB_SITE="https://www.daveltd.com/src/util/ttyload/" |
pascal@1740 | 11 WGET_URL="${WEB_SITE}$TARBALL" |
pascal@1740 | 12 |
pascal@1740 | 13 # Rules to configure and make the package. |
pascal@1740 | 14 compile_rules() |
pascal@1740 | 15 { |
pascal@1740 | 16 cd $src |
pascal@1740 | 17 make |
pascal@1740 | 18 } |
pascal@1740 | 19 |
pascal@1740 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1740 | 21 genpkg_rules() |
pascal@1740 | 22 { |
pascal@1740 | 23 mkdir -p $fs/usr/bin |
pascal@1740 | 24 cp -a $src/ttyload $fs/usr/bin |
pascal@1740 | 25 } |
pascal@1740 | 26 |