wok view webgames/receipt @ rev 23922

Add alieninvasion, spaceinvader, racer10k and javascript-racer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 22 17:01:17 2020 +0000 (2020-08-22)
parents 98fc8296e0a1
children 02aa784b8c4b
line source
1 # SliTaz package receipt.
3 PACKAGE="webgames"
4 VERSION="1.0"
5 CATEGORY="games"
6 SHORT_DESC="Set of online games"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.slitaz.org/"
11 mline()
12 {
13 type=$1
14 IFS='|'; set -- $2
15 echo "$type=$1"
16 while [ "$2" ]; do
17 echo "$type${2%]*}]=${2#*]}"
18 shift
19 done
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share/applications
26 while read url name comment icon; do
27 cat > $fs/usr/share/applications/$(echo ${name%|*} | \
28 tr [A-Z\ ] [a-z_]).desktop <<EOT
29 [Desktop Entry]
30 Type=Application
31 $(mline Name "$name")${comment:+
32 $(mline Comment "$comment")}
33 Exec=sh -c "url=$url; tazweb --notoolbar \$url || browser \$url"
34 Terminal=false
35 Categories=Game;
36 Icon=${icon:-text-html}
37 EOT
38 done <<EOT
39 https://sokoban.info/ Sokoban\
40 Plateform\ game|[fr]Jeu\ de\ plateforme
41 http://minesweeper.biz/ MineSweeper|[fr]Démineur
42 http://playcheckers.org/ Checkers|[fr]Dames\ anglaises
43 http://4-in-a-row.com/ 4\ in\ a\ raw|[fr]4\ en\ ligne
44 http://chinese-checkers.net/ Chinese\ Checkers|[fr]Dames\ chinoises
45 http://games.slitaz.org/2048/index.html\
46 2048 2048 applications-games
47 http://games.slitaz.org/sudoku/index.html\
48 Sudoku Puzzle applications-games
49 http://games.slitaz.org/loderunner/lodeRunner.html\
50 Lode\ Runner Plateform\ game|[fr]Jeu\ de\ plateforme\
51 applications-games
52 http://games.slitaz.org/digger/digger.html\
53 Digger Plateform\ game|[fr]Jeu\ de\ plateforme\
54 applications-games
55 http://games.slitaz.org/same/index.html\
56 Same same applications-games
57 http://games.slitaz.org/alieninvasion/index.html\
58 AlienInvasion Galaga\ clone applications-games
59 http://games.slitaz.org/spaceinvader/index.html\
60 SpaceInvaders Space\ invaders\ clone applications-games
61 http://games.slitaz.org/javascript-racer/v4.final.html\
62 JSracer Tux\ racer\ clone applications-games
63 EOT
64 }