wok view fltk-checkers/receipt @ rev 19641

Up: opus (1.1.3)
author Alexander Medvedev <devl547@gmail.com>
date Fri Jan 20 16:48:53 2017 +0000 (2017-01-20)
parents 59d50f859d0d
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="fltk-checkers"
4 VERSION="1.3.3"
5 CATEGORY="games"
6 SHORT_DESC="FLTK Checkers game."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="http://www.fltk.org/"
10 HOST_ARCH="i486 arm"
12 WANTED="fltk"
13 DEPENDS="fltk"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd ${src}/test &&
19 [ -x ./checkers ] || make checkers
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/games $fs/usr/share/pixmaps
26 cp -a ${src}/test/checkers $fs/usr/games/$PACKAGE
27 cp -a ${src}/test/desktop/checkers-32.png \
28 $fs/usr/share/pixmaps/$PACKAGE.png
29 }