wok view sudoku-savant/receipt @ rev 1690

Add jfsutils
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 11 09:02:11 2008 +0000 (2008-11-11)
parents 4c46b6f38765
children 8c4a70e18847
line source
1 # SliTaz package receipt.
3 PACKAGE="sudoku-savant"
4 VERSION="1.2.1"
5 CATEGORY="games"
6 SHORT_DESC="Sudoku games/generator using GTK."
7 BUILD_DEPENDS="gtk+-dev"
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://sourceforge.net/projects/sudoku-savant/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man
20 make
21 make DESTDIR=$PWD/_pkg install
22 # No desktop-file-utils
23 echo "Continue..."
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 # Temporary copy translation (sended to author, will propably
32 # be include in the next release).
33 mkdir -p $fs/usr/share/locale/fr/LC_MESSAGES
34 cp stuff/*.mo $fs/usr/share/locale/fr/LC_MESSAGES
35 }