wok view Connect-Four/receipt @ rev 23984

linld: fix bootiso/strhead
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 25 20:41:41 2020 +0000 (2020-11-25)
parents
children 34e801e0eb52
line source
1 # SliTaz package receipt.
3 PACKAGE="Connect-Four"
4 VERSION="1.0"
5 GITTAG="fa4bbe1fbd6158fa4504d3cb832d8d4af4d3f805"
6 CATEGORY="games"
7 SHORT_DESC="A Connect Four game in JavaScript"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="unknown"
10 WEB_SITE="https://github.com/OmarAlEisa/Connect-Four"
11 TARBALL="$PACKAGE-$VERSION.zip"
12 WGET_URL="$WEB_SITE/archive/$GITTAG.zip"
13 HOST_ARCH="any"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/var/www/Connect-Four $fs/usr/share/applications
19 cp -a $src/[a-z]* $fs/var/www/Connect-Four
20 sed -i '/<script>/,/<\/script>/d' $fs/var/www/Connect-Four/index.html
21 chown -R 80.80 $fs/var/www/Connect-Four
22 cat > $fs/usr/share/applications/Connect-Four.desktop <<EOT
23 [Desktop Entry]
24 Type=Application
25 Name=4 in a raw
26 Name[fr]=4 en ligne
27 Exec=sh -c "url=file:///var/www/Connect-Four/index.html; tazweb --notoolbar \$url || browser \$url"
28 Terminal=false
29 Categories=Game;
30 Icon=applications-games
31 EOT
32 }