wok-stable annotate sylpheed/receipt @ rev 420

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