wok view sylpheed/receipt @ rev 9445

slitaz-doc: add system-doc.desktop
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 02 01:31:20 2011 +0200 (2011-04-02)
parents 1d5b9e8e347e
children 46bdddb99587
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed"
4 VERSION="3.1.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+ libssl gpgme gnupg xorg-libXdamage"
9 BUILD_DEPENDS="openssl-dev glib glib-dev gtk+-dev expat-dev pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://sylpheed.sraoss.jp/en/"
12 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v3.1/$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 --disable-gtkspell \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }