wok annotate p4wn/receipt @ rev 9310
Up: leocad to 0.75.1. Now using source code. Fixed leocad-pieces also.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Mar 17 18:56:00 2011 +0000 (2011-03-17) |
parents | da9081c3c915 |
children | 2b260f668fef |
rev | line source |
---|---|
pascal@7045 | 1 # SliTaz package receipt. |
pascal@7045 | 2 |
pascal@7045 | 3 PACKAGE="p4wn" |
pascal@7045 | 4 VERSION="1.0" |
pascal@7045 | 5 CATEGORY="games" |
pascal@7045 | 6 SHORT_DESC="Chess game in javascript" |
pascal@7045 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@7045 | 8 WEB_SITE="http://p4wn.sourceforge.net/" |
pascal@7045 | 9 TARBALL="sven_vehars_fancy_version.zip" |
slaxemulator@8439 | 10 WGET_URL="$WEB_SITE/downloads/$TARBALL" |
pascal@7045 | 11 # Rules to configure and make the package. |
pascal@7045 | 12 compile_rules() |
pascal@7045 | 13 { |
pascal@7045 | 14 cd $src |
pascal@7045 | 15 sed -i '/background-image/d' *.css |
pascal@7045 | 16 sed -i 's|title>.*</title|title>Chess</title|' index.html |
pascal@7045 | 17 } |
pascal@7045 | 18 |
pascal@7045 | 19 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@7045 | 20 genpkg_rules() |
pascal@7045 | 21 { |
pascal@7144 | 22 mkdir -p $fs/var/www/p4wn $fs/usr/share/applications |
pascal@7144 | 23 cp $src/* $fs/var/www/p4wn |
pascal@7144 | 24 rm -f $fs/var/www/p4wn/README $fs/var/www/p4wn/*background.png |
pascal@7144 | 25 chown -R 80.80 $fs/var/www/p4wn |
pascal@7144 | 26 cat > $fs/usr/share/applications/p4wn.desktop <<EOT |
pascal@7045 | 27 [Desktop Entry] |
pascal@7045 | 28 Type=Application |
pascal@7144 | 29 Name=p4wn (Chess) |
pascal@7144 | 30 Exec=GtkLauncher file:///var/www/p4wn/index.html |
pascal@7144 | 31 Icon=/var/www/p4wn/2.gif |
pascal@7045 | 32 Terminal=false |
pascal@7045 | 33 Categories=Game; |
pascal@7045 | 34 Comment=Chess game |
pascal@7045 | 35 EOT |
pascal@7045 | 36 } |
pascal@7045 | 37 |