wok view sylpheed/receipt @ rev 490

Up: slitaz-base-files (1.4) + slitaz-doc (1.2) to change slitaz release string
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 22 16:58:02 2008 +0100 (2008-03-22)
parents 00b8d39101ac
children 7d0899b4bf0f
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed"
4 VERSION="2.4.8"
5 CATEGORY="network"
6 SHORT_DESC="Simple, lightweight but featureful, and easy-to-use e-mail client"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://sylpheed.sraoss.jp/en/"
11 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v2.4/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 --disable-ssl \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/pixmaps \
31 $fs/usr/share/applications \
32 $fs/usr/share/locale
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $src/sylpheed.png $fs/usr/share/pixmaps
35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
36 strip -s $fs/usr/bin/*
37 # Desktop entry
38 cp -a stuff/sylpheed.desktop $fs/usr/share/applications
39 }