wok view tty-clock/receipt @ rev 6952

Fixed a bug in gobject-introspection. Looks like /usr/lib/girepository-1.0 is needed gobject-introspection instead of the -dev package.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 25 22:01:57 2010 +0000 (2010-10-25)
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 }