wok view gyrus/receipt @ rev 11340

seamonkey: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 26 11:04:18 2011 +0100 (2011-11-26)
parents 88b2c10621bf
children 45b96f953c46
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://projects.gnome.org/gyrus/"
10 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/gyrus/0.3/$TARBALL"
12 DEPENDS="gtk+ dbus ORBit2 gnet libglade GConf"
13 BUILD_DEPENDS="gtk+ dbus-dev ORBit2-dev gnet-dev libglade-dev GConf-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure $CONFIGURE_ARGS && make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/share
25 cp -a $_pkg/usr/bin $fs/usr
26 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
27 if ! grep ^Icon= $_pkg/usr/share/applications/gyrus.desktop; then
28 echo 'Icon=web-browser' >> $_pkg/usr/share/applications/gyrus.desktop
29 fi
30 }