wok-current view klavaro/receipt @ rev 1401

adding tree
author Mike D. Smith <MikeDSmith25@gmail.com>
date Sat Sep 20 20:30:30 2008 -0700 (2008-09-20)
parents
children f08ead2d5191
line source
1 # SliTaz package receipt.
3 PACKAGE="klavaro"
4 VERSION="1.1.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Free touch typing tutor program."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 DEPENDS="gtk+"
10 BUILD_DEPENDS="gtk+-dev"
11 WEB_SITE="http://klavaro.sourceforge.net/en/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/klavaro $fs/usr/share
31 cp -a $_pkg/var $fs
32 }