wok view c-client/receipt @ rev 10009

gnustep-gui: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 19 02:08:44 2011 +0200 (2011-05-19)
parents 94b3a260a657
children 8a4997fbdd88
line source
1 # SliTaz package receipt.
3 PACKAGE="c-client"
4 VERSION="2007e"
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"
13 TAGS="imap pop3 smtp"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
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 }