wok annotate tty-clock/receipt @ rev 9195

busybox: add conspy fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 09 22:01:54 2011 +0100 (2011-03-09)
parents 36a0e1608714
children 954223c4631d
rev   line source
paul@4625 1 # SliTaz package receipt.
paul@4625 2
paul@4625 3 PACKAGE="tty-clock"
paul@6395 4 VERSION="20100924"
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@6395 10 WEB_SITE="http://github.com/Karnash/tty-clock"
jozee@4973 11 TAGS="clock"
gokhlayeh@8581 12 WGET_URL="git|http://github.com/Karnash/tty-clock.git"
paul@4625 13
paul@4625 14 # Rules to configure and make the package.
paul@4625 15 compile_rules()
paul@4625 16 {
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