wok view webgames/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents c34ef09acb7c
children 98fc8296e0a1
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://games.slitaz.org/sudoku/index.html\
47 Sudoku Puzzle
48 http://games.slitaz.org/loderunner/lodeRunner.html\
49 Lode\ Runner Plateform\ game|[fr]Jeu\ de\ plateforme
50 http://games.slitaz.org/digger/digger.html\
51 Digger Plateform\ game|[fr]Jeu\ de\ plateforme
52 http://games.slitaz.org/same/index.html\
53 Same
54 EOT
55 }