wok view c-client/receipt @ rev 4413

fix depends elinks
author Allan Pinto <allan316@gmail.com>
date Wed Oct 21 12:24:33 2009 +0000 (2009-10-21)
parents d6723df895bb
children f7e96b8e3444
line source
1 # SliTaz package receipt.
3 PACKAGE="c-client"
4 VERSION="2007b"
5 CATEGORY="development"
6 SHORT_DESC="mail store formats support."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE.tar.Z"
9 SOURCE="imap"
10 WEB_SITE="http://www.washington.edu/imap/"
11 WGET_URL="ftp://ftp.cac.washington.edu/mail/$TARBALL"
12 BUILD_DEPENDS="openssl-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 [ -d $src ] || busybox tar -xZf $SOURCES_REPOSITORY/$TARBALL
18 cd $src
19 sed -i 's|SSLCFLAGS)|SSLCFLAGS) -I/usr/include/openssl|' \
20 src/osdep/unix/Makefile
21 make slx
22 mkdir -p _pkg/usr/include/c-client _pkg/usr/lib
23 cp -a src/c-client/*.h _pkg/usr/include/c-client
24 cp c-client/linkage.h _pkg/usr/include/c-client
25 cp c-client/osdep.h _pkg/usr/include/c-client
26 cp c-client/env_unix.h _pkg/usr/include/c-client
27 cp c-client/c-client.a _pkg/usr/lib
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $_pkg/* $fs
34 }