wok-next view c-client/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents b19ddba309f9
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="c-client"
4 VERSION="2007f"
5 CATEGORY="development"
6 SHORT_DESC="Mail store formats support"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Apache"
9 WEB_SITE="http://www.washington.edu/imap/"
11 TARBALL="imap-$VERSION.tar.gz"
12 WGET_URL="https://www.mirrorservice.org/sites/ftp.cac.washington.edu/imap/$TARBALL"
14 BUILD_DEPENDS="openssl-dev krb5-dev pam-dev"
15 COOKOPTS="skip-log-errors"
17 compile_rules() {
18 sed \
19 -e "s:-g -fno-omit-frame-pointer -O6:\${CFLAGS}:" \
20 -e "s:SSLDIR=/usr/local/ssl:SSLDIR=/usr:" \
21 -e "s:SSLCERTS=\$(SSLDIR)/certs:SSLCERTS=/etc/ssl/certs:" \
22 -i src/osdep/unix/Makefile
24 make slx
26 mkdir -p \
27 $install/usr/include/c-client \
28 $install/usr/lib
29 cp src/c-client/*.h c-client/linkage.h c-client/osdep.h c-client/env_unix.h \
30 $install/usr/include/c-client
31 cp c-client/c-client.a $install/usr/lib
33 chown -R root:root $install
34 }
36 genpkg_rules() {
37 copy @dev
38 TAGS="imap pop3 smtp"
39 }