wok view sylpheed/receipt @ rev 3705

Upgrade: sylpheed (2.6.0 to 2.7.0) and add devel pkg
author Christophe Lincoln <pankso@slitaz.org>
date Mon Jul 20 00:50:46 2009 +0200 (2009-07-20)
parents 0b02072d7f48
children ea40c965723a
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed"
4 VERSION="2.7.0"
5 CATEGORY="network"
6 SHORT_DESC="Simple, lightweight but featureful, and easy-to-use e-mail client"
7 MAINTAINER="fraazz@altern.org"
8 DEPENDS="gtk+ openssl gpgme gnupg xorg-libXdamage"
9 BUILD_DEPENDS="openssl-dev glib glib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://sylpheed.sraoss.jp/en/"
12 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v2.7/$TARBALL"
13 TAGS="mail internet"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }