wok annotate tty-clock/receipt @ rev 4625

Add: tty-clock
author Paul Issott <paul@slitaz.org>
date Sun Dec 20 11:40:06 2009 +0000 (2009-12-20)
parents
children 866fa2493b1b
rev   line source
paul@4625 1 # SliTaz package receipt.
paul@4625 2
paul@4625 3 PACKAGE="tty-clock"
paul@4625 4 VERSION="20091220"
paul@4625 5 CATEGORY="utilities"
paul@4625 6 SHORT_DESC="Analog ncurses clock."
paul@4625 7 MAINTAINER="paul@slitaz.org"
paul@4625 8 DEPENDS="ncurses"
paul@4625 9 BUILD_DEPENDS="ncurses-dev git"
paul@4625 10 WEB_SITE="http://gitorious.org/holizz-github/tty-clock"
paul@4625 11
paul@4625 12 # Rules to configure and make the package.
paul@4625 13 compile_rules()
paul@4625 14 {
paul@4625 15 git clone git://gitorious.org/holizz-github/tty-clock.git
paul@4625 16 mv $PACKAGE $PACKAGE-$VERSION 2>/dev/null
paul@4625 17 cd $src
paul@4625 18 make
paul@4625 19 }
paul@4625 20
paul@4625 21 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4625 22 genpkg_rules()
paul@4625 23 {
paul@4625 24 mkdir -p $fs/usr/bin
paul@4625 25 cp $src/$PACKAGE $fs/usr/bin
paul@4625 26 }
paul@4625 27