wok-6.x annotate iron-linux/receipt @ rev 9036
iron-linux, squirrelmail plugins: fix genpkg_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Mar 04 00:08:04 2011 +0100 (2011-03-04) |
parents | 20fa201cf18c |
children | 91a615759636 |
rev | line source |
---|---|
paul@6528 | 1 # SliTaz package receipt. |
paul@6528 | 2 |
paul@6528 | 3 PACKAGE="iron-linux" |
paul@7231 | 4 VERSION="7.0.520.0" |
paul@6528 | 5 CATEGORY="network" |
paul@6528 | 6 SHORT_DESC="Secure web browser (Chromium source)." |
paul@6528 | 7 MAINTAINER="paul@slitaz.org" |
paul@7354 | 8 DEPENDS="nss-dev libfirefox GConf cups libjpeg62" # may need updating? |
paul@6528 | 9 TARBALL="$PACKAGE.tar.gz" |
paul@6528 | 10 WEB_SITE="http://www.srware.net/en/software_srware_iron.php" |
paul@6528 | 11 WGET_URL="http://www.srware.net/downloads/$TARBALL" |
paul@6528 | 12 |
pascal@9036 | 13 # Rules to configure and make the package. |
pascal@9036 | 14 compile_rules() |
pascal@9036 | 15 { |
pascal@9036 | 16 cp -a $src $DESTDIR/$PACKAGE |
pascal@9036 | 17 } |
pascal@9036 | 18 |
paul@6528 | 19 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@6528 | 20 genpkg_rules() |
paul@6528 | 21 { |
paul@6528 | 22 mkdir -p $fs/usr/lib |
pascal@9036 | 23 cp -a $_pkg/$PACKAGE $fs/usr/lib |
paul@6528 | 24 # Desktop file |
paul@6528 | 25 cp -a stuff/* $fs |
paul@6528 | 26 } |
paul@6528 | 27 |
paul@6528 | 28 # Create a link to /usr/bin/iron and copy png. |
paul@6528 | 29 post_install() |
paul@6528 | 30 { |
paul@6528 | 31 cp -a $1/usr/lib/iron-linux/product_logo_48.png $1/usr/share/pixmaps/iron.png |
paul@6528 | 32 ln -s $1/usr/lib/iron-linux/iron $1/usr/bin/iron |
paul@6528 | 33 } |
paul@6528 | 34 |
paul@6528 | 35 # Remove link and png. |
paul@6528 | 36 post_remove() |
paul@6528 | 37 { |
paul@6528 | 38 rm -f $1/usr/bin/iron |
paul@6528 | 39 rm -f $1/usr/share/pixmaps/iron.png |
paul@6528 | 40 } |
paul@6528 | 41 |