wok view gyrus/receipt @ rev 6675

get-OpenOffice3: fix tazball name
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Oct 12 20:31:06 2010 +0200 (2010-10-12)
parents 1986049523b8
children a0ef91b8d352
line source
1 # SliTaz package receipt.
3 PACKAGE="gyrus"
4 VERSION="0.3.8"
5 CATEGORY="network"
6 SHORT_DESC="Small tool for the administration of mailboxes in IMAP/Cyrus servers."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ dbus ORBit2 gnet libglade GConf"
9 BUILD_DEPENDS="gtk+-dev dbus ORBit2-dev gnet-dev libglade-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://projects.gnome.org/gyrus/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/gyrus/0.3/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
31 if ! grep ^Icon= $_pkg/usr/share/applications/gyrus.desktop; then
32 echo 'Icon=web-browser' >> $_pkg/usr/share/applications/gyrus.desktop
33 fi
34 }