wok annotate sylpheed/receipt @ rev 10255

Add rake.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 04:00:00 2011 +0000 (2011-05-21)
parents 1d5b9e8e347e
children 46bdddb99587
rev   line source
pankso@40 1 # SliTaz package receipt.
pankso@40 2
pankso@40 3 PACKAGE="sylpheed"
slaxemulator@8430 4 VERSION="3.1.0"
pankso@203 5 CATEGORY="network"
pankso@40 6 SHORT_DESC="Simple, lightweight but featureful, and easy-to-use e-mail client"
fraazz@522 7 MAINTAINER="fraazz@altern.org"
pankso@4333 8 DEPENDS="gtk+ libssl gpgme gnupg xorg-libXdamage"
slaxemulator@6374 9 BUILD_DEPENDS="openssl-dev glib glib-dev gtk+-dev expat-dev pkg-config"
pankso@40 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@40 11 WEB_SITE="http://sylpheed.sraoss.jp/en/"
slaxemulator@8430 12 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v3.1/$TARBALL"
pankso@3705 13 TAGS="mail internet"
pankso@40 14
pankso@40 15 # Rules to configure and make the package.
pankso@40 16 compile_rules()
pankso@40 17 {
pankso@40 18 cd $src
pankso@168 19 ./configure \
pankso@168 20 --prefix=/usr \
pankso@168 21 --infodir=/usr/share/info \
pankso@168 22 --mandir=/usr/share/man \
pankso@3971 23 --disable-gtkspell \
pascal@1460 24 $CONFIGURE_ARGS &&
pascal@1460 25 make &&
pankso@40 26 make DESTDIR=$PWD/_pkg install
pankso@40 27 }
pankso@40 28
pankso@40 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@40 30 genpkg_rules()
pankso@40 31 {
pankso@3705 32 mkdir -p $fs/usr/lib
pankso@40 33 cp -a $_pkg/usr/bin $fs/usr
pankso@3705 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@40 35 }