wok-stable view tty-clock/receipt @ rev 6616

Fixed mercurial. Need pyconfig.h for mercurial to work. So i added this to python package since pyconfig.h maybe need for more python programs. I also removed all .pyc and .pyo files from python. Removed about 4mb from python by doing that.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Oct 09 20:49:19 2010 +0000 (2010-10-09)
parents 866fa2493b1b
children 5e040c318c37
line source
1 # SliTaz package receipt.
3 PACKAGE="tty-clock"
4 VERSION="20100924"
5 CATEGORY="utilities"
6 SHORT_DESC="Analog ncurses clock."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev git"
10 WEB_SITE="http://github.com/Karnash/tty-clock"
11 TAGS="clock"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 git clone http://github.com/Karnash/tty-clock.git
17 mv $PACKAGE $PACKAGE-$VERSION 2>/dev/null
18 cd $src
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp $src/$PACKAGE $fs/usr/bin
27 }