wok-next view othello/receipt @ rev 21081

Tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 24 11:36:03 2018 +0200 (2018-12-24)
parents d5aab818505e
children d026631bbebb
line source
1 # SliTaz package receipt v2.
3 PACKAGE="othello"
4 VERSION="1.0"
5 CATEGORY="games"
6 SHORT_DESC="Othello game in javascript"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://web.archive.org/web/20101231221346/http://www.posi.net:80/software/othello/"
11 TARBALL="$PACKAGE-$VERSION.tar.lzma"
13 compile_rules() {
14 mkdir -p $src/images 2>/dev/null
15 cd $src
16 if [ ! -s othello.js ]; then
17 if [ -f $SRC/$TARBALL ]; then
18 unlzma -c $SRC/$TARBALL | tar xf -
19 mv $PACKAGE-$VERSION/* .
20 else
21 wget -O $SRC/$TARBALL http://mirror.slitaz.org/sources/packages/o/$TARBALL &&
22 unlzma -c $SRC/$TARBALL | tar xf -
23 mv $PACKAGE-$VERSION/* .
24 fi
25 fi
26 #for i in index.html othello.js \
27 # images/blank.gif images/white.gif images/black.gif \
28 # images/white-trans.gif images/black-trans.gif; do
29 # [ -s $i ] || wget -P $(dirname $i) $WEB_SITE/$i
30 #done
31 sed -i 's|TITLE>.*</TITLE|TITLE>Othello</TITLE|' index.html
33 mkdir -p $install/var/www/othello
34 cp -a $src/* $install/var/www/othello
35 chown -R 80.80 $install/var/www/othello
37 install -Dm644 $stuff/othello.desktop $install/usr/share/applications/othello.desktop
38 }