wok view sylpheed/receipt @ rev 6960

singularity: patch and path change
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Oct 26 13:14:13 2010 +0200 (2010-10-26)
parents aa114bc3d0e1
children c9a04d804c03
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed"
4 VERSION="3.0.3"
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.0/$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 }