wok annotate sylpheed/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents aa114bc3d0e1
children c9a04d804c03
rev   line source
pankso@40 1 # SliTaz package receipt.
pankso@40 2
pankso@40 3 PACKAGE="sylpheed"
slaxemulator@6374 4 VERSION="3.0.3"
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/"
pankso@5334 12 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v3.0/$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 }