wok-next annotate othello/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents d635206a5649
children
rev   line source
al@20481 1 # SliTaz package receipt v2.
pascal@7047 2
pascal@7047 3 PACKAGE="othello"
pascal@7047 4 VERSION="1.0"
pascal@7047 5 CATEGORY="games"
pascal@7047 6 SHORT_DESC="Othello game in javascript"
pascal@7047 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15611 8 LICENSE="MIT"
al@21020 9 WEB_SITE="https://web.archive.org/web/20101231221346/http://www.posi.net:80/software/othello/"
al@21082 10 HOST_ARCH="any"
pascal@7047 11
al@20481 12 TARBALL="$PACKAGE-$VERSION.tar.lzma"
al@20481 13
al@20481 14 compile_rules() {
al@20481 15 mkdir -p $src/images 2>/dev/null
pascal@7047 16 cd $src
slaxemulator@8982 17 if [ ! -s othello.js ]; then
al@20481 18 if [ -f $SRC/$TARBALL ]; then
al@20481 19 unlzma -c $SRC/$TARBALL | tar xf -
slaxemulator@8982 20 mv $PACKAGE-$VERSION/* .
slaxemulator@8982 21 else
al@20481 22 wget -O $SRC/$TARBALL http://mirror.slitaz.org/sources/packages/o/$TARBALL &&
al@20481 23 unlzma -c $SRC/$TARBALL | tar xf -
slaxemulator@8982 24 mv $PACKAGE-$VERSION/* .
slaxemulator@8982 25 fi
pascal@8947 26 fi
slaxemulator@8982 27 #for i in index.html othello.js \
slaxemulator@8982 28 # images/blank.gif images/white.gif images/black.gif \
al@21020 29 # images/white-trans.gif images/black-trans.gif; do
slaxemulator@8982 30 # [ -s $i ] || wget -P $(dirname $i) $WEB_SITE/$i
slaxemulator@8982 31 #done
pascal@7047 32 sed -i 's|TITLE>.*</TITLE|TITLE>Othello</TITLE|' index.html
pascal@7047 33
al@21020 34 mkdir -p $install/var/www/othello
al@20481 35 cp -a $src/* $install/var/www/othello
al@20481 36 chown -R 80.80 $install/var/www/othello
al@21020 37
al@21020 38 install -Dm644 $stuff/othello.desktop $install/usr/share/applications/othello.desktop
pascal@7047 39 }