wok view fltk-checkers/receipt @ rev 22797

Add xsane-locales
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 27 10:28:49 2020 +0100 (2020-01-27)
parents 20eb236f6de4
children 46a25aedecec
line source
1 # SliTaz package receipt.
3 PACKAGE="fltk-checkers"
4 VERSION="1.3.5"
5 CATEGORY="games"
6 SHORT_DESC="FLTK Checkers game."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://www.fltk.org/"
11 DEPENDS="fltk"
12 WANTED="fltk"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd ${src}/test &&
20 [ -x ./checkers ] || make checkers
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/games
27 mkdir -p $fs/usr/share/pixmaps
29 cp -a ${src}/test/checkers $fs/usr/games/$PACKAGE
30 cp -a ${src}/test/desktop/checkers-32.png \
31 $fs/usr/share/pixmaps/$PACKAGE.png
32 }