wok view sylpheed/receipt @ rev 9357

Up: evince to 2.32.0. Building with -j1 fixes it.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Mar 19 23:30:22 2011 +0000 (2011-03-19)
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 }