wok-6.x annotate p4wn/receipt @ rev 7633
gobject-introspection: Add -export-dynamic when compiling with libtool
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Dec 13 13:10:04 2010 +0100 (2010-12-13) |
parents | 717afcb65646 |
children | 4e1164937651 |
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" |
pascal@7045 | 10 |
pascal@7045 | 11 # Rules to configure and make the package. |
pascal@7045 | 12 compile_rules() |
pascal@7045 | 13 { |
pascal@7045 | 14 mkdir $src |
pascal@7045 | 15 cd $src |
pascal@7045 | 16 [ -s $SOURCES_REPOSITORY/$TARBALL ] || |
pascal@7045 | 17 wget $WEB_SITE/downloads/$TARBALL -P $SOURCES_REPOSITORY |
pascal@7045 | 18 [ -s index.html ] || unzip $SOURCES_REPOSITORY/$TARBALL |
pascal@7045 | 19 sed -i '/background-image/d' *.css |
pascal@7045 | 20 sed -i 's|title>.*</title|title>Chess</title|' index.html |
pascal@7045 | 21 } |
pascal@7045 | 22 |
pascal@7045 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@7045 | 24 genpkg_rules() |
pascal@7045 | 25 { |
pascal@7144 | 26 mkdir -p $fs/var/www/p4wn $fs/usr/share/applications |
pascal@7144 | 27 cp $src/* $fs/var/www/p4wn |
pascal@7144 | 28 rm -f $fs/var/www/p4wn/README $fs/var/www/p4wn/*background.png |
pascal@7144 | 29 chown -R 80.80 $fs/var/www/p4wn |
pascal@7144 | 30 cat > $fs/usr/share/applications/p4wn.desktop <<EOT |
pascal@7045 | 31 [Desktop Entry] |
pascal@7045 | 32 Type=Application |
pascal@7144 | 33 Name=p4wn (Chess) |
pascal@7144 | 34 Exec=GtkLauncher file:///var/www/p4wn/index.html |
pascal@7144 | 35 Icon=/var/www/p4wn/2.gif |
pascal@7045 | 36 Terminal=false |
pascal@7045 | 37 Categories=Game; |
pascal@7045 | 38 Comment=Chess game |
pascal@7045 | 39 EOT |
pascal@7045 | 40 } |
pascal@7045 | 41 |