wok annotate tty-clock/receipt @ rev 5575

linux-netfilter: don't pack ipv6 module
author Akim Bey <gokhlayeh@mailoo.org>
date Sat May 15 14:41:17 2010 +0000 (2010-05-15)
parents 250505e1d0ea
children 36a0e1608714
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"
jozee@4973 11 TAGS="clock"
paul@4625 12
paul@4625 13 # Rules to configure and make the package.
paul@4625 14 compile_rules()
paul@4625 15 {
paul@4625 16 git clone git://gitorious.org/holizz-github/tty-clock.git
paul@4625 17 mv $PACKAGE $PACKAGE-$VERSION 2>/dev/null
paul@4625 18 cd $src
paul@4625 19 make
paul@4625 20 }
paul@4625 21
paul@4625 22 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4625 23 genpkg_rules()
paul@4625 24 {
paul@4625 25 mkdir -p $fs/usr/bin
paul@4625 26 cp $src/$PACKAGE $fs/usr/bin
paul@4625 27 }
paul@4625 28