wok-6.x annotate ttyload/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents
children 23c3aed67cd9
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@1740 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1740 9 WEB_SITE="http://www.daveltd.com/src/util/ttyload/"
pascal@1740 10 WGET_URL="${WEB_SITE}$TARBALL"
pascal@1740 11
pascal@1740 12 # Rules to configure and make the package.
pascal@1740 13 compile_rules()
pascal@1740 14 {
pascal@1740 15 cd $src
pascal@1740 16 make
pascal@1740 17 }
pascal@1740 18
pascal@1740 19 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1740 20 genpkg_rules()
pascal@1740 21 {
pascal@1740 22 mkdir -p $fs/usr/bin
pascal@1740 23 cp -a $src/ttyload $fs/usr/bin
pascal@1740 24 }
pascal@1740 25