wok-next view claws-mail-archive/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents c8d661eae04a
children 4df3de057e5f
line source
1 # SliTaz package receipt.
3 PACKAGE="claws-mail-archive"
4 VERSION="0.6.7"
5 CATEGORY="network"
6 SHORT_DESC="claws-mail archiving features"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="claws-mail libarchive acl liblzma bzlib"
9 BUILD_DEPENDS="claws-mail-dev libarchive-dev acl-dev liblzma-dev"
10 SOURCE="archive"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.claws-mail.org"
13 WGET_URL="http://www.claws-mail.org/downloads/plugins/$TARBALL"
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 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/claws-mail/plugins \
31 $fs/usr/share/locale
33 cp -a $_pkg/usr/lib/claws-mail/plugins/*.so* \
34 $fs/usr/lib/claws-mail/plugins
35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
36 }