wok annotate magnifier/receipt @ rev 1157

Add: Magnifier (Virtual Magnifying Glass)
author Paul Issott <paul@slitaz.org>
date Sun Jul 27 10:49:08 2008 +0000 (2008-07-27)
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