wok view libetpan/receipt @ rev 12071

fix compiz-core-dev for tazwok compatibility
author Antoine Bodin <gokhlayeh@slitaz.org>
date Fri Mar 09 04:34:55 2012 +0100 (2012-03-09)
parents 9e8a661f0cfd
children 6c3718ca17b6
line source
1 # SliTaz package receipt.
3 PACKAGE="libetpan"
4 VERSION="1.0"
5 CATEGORY="misc"
6 SHORT_DESC="Mail librayry"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libsasl expat libcurl libdb openssl zlib gcc-lib-base"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://libetpan.sourceforge.net/libetpan/index.html"
11 WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/libetpan/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 sed -i 's/--iso-8601=minutes/+%Y-%m-%dT%H:%M%Z/' configure
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }