wok view gyrus/receipt @ rev 9923

webalizer: fix deps/bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue May 17 23:14:08 2011 +0200 (2011-05-17)
parents a0ef91b8d352
children 43441506d5f5
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="intltool"
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 }