wok annotate magnifier/receipt @ rev 2199
Remove duplicate get-*-firmware
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Feb 09 17:12:44 2009 +0000 (2009-02-09) |
parents | |
children | cde7fa93f1d6 |
rev | line source |
---|---|
paul@1157 | 1 # SliTaz package receipt. |
paul@1157 | 2 |
paul@1157 | 3 PACKAGE="magnifier" |
paul@1157 | 4 VERSION="3.3.1" |
paul@1157 | 5 CATEGORY="utilities" |
paul@1157 | 6 SHORT_DESC="Virtual magnifying glass" |
paul@1157 | 7 MAINTAINER="paul@slitaz.org" |
paul@1157 | 8 DEPENDS="" |
paul@1157 | 9 SOURCE="magnifier-linux" |
paul@1157 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
paul@1157 | 11 WEB_SITE="http://magnifier.sourceforge.net/" |
paul@1157 | 12 WGET_URL="http://downloads.sourceforge.net/magnifier/$TARBALL" |
paul@1157 | 13 |
paul@1157 | 14 # Rules to configure and make the package. |
paul@1157 | 15 compile_rules() |
paul@1157 | 16 { |
paul@1157 | 17 cd $src |
paul@1157 | 18 ./install.sh DESTDIR=$PWD/_pkg install |
paul@1157 | 19 } |
paul@1157 | 20 |
paul@1157 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@1157 | 22 genpkg_rules() |
paul@1157 | 23 { |
paul@1157 | 24 mkdir -p $fs/usr/share/pixmaps |
paul@1157 | 25 cp -a $_pkg/usr/bin $fs/usr |
paul@1157 | 26 cp -a $_pkg/usr/share $fs/usr |
paul@1157 | 27 cp $_pkg/usr/share/magnifier/icon3.ico $fs/usr/share/pixmaps/icon3.png |
paul@1157 | 28 } |
paul@1157 | 29 |