wok view webgames/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents ffed896b80ca
children 6377db28b7bf
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 https://www.quaxio.com/2048/ 2048
46 http://sudokus.org/ Sudoku Puzzle
47 http://games.slitaz.org/loderunner/lodeRunner.html\
48 Lode\ Runner Plateform\ game|[fr]Jeu\ de\ plateforme
49 http://games.slitaz.org/digger/digger.html\
50 Digger Plateform\ game|[fr]Jeu\ de\ plateforme
51 EOT
52 }