Magellan Linux

Contents of /branches/R11-unstable/extras/neon/neon-0.30.2-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32560 - (show annotations) (download)
Mon Apr 29 13:09:16 2019 UTC (5 years ago) by niro
File size: 915 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="neon"
4 PVER="0.30.2"
5 PBUILD="r2"
6
7 PCAT="net-misc"
8
9 DESCRIPTION="neon is an http and webdav client library, with a C interface."
10 HOMEPAGE="http://www.webdav.org/neon/"
11
12 DEPEND=">= dev-libs/libxml2-2.9
13 >= dev-libs/openssl-1.1.0f
14 >= net-libs/libproxy-0.4
15 >= sys-libs/zlib-1.2.8
16 >= app-crypt/ca-certificates-2017"
17
18 SRCFILE="${PNAME}-${PVER}.tar.gz"
19 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
20
21 sminclude mbuild
22 msetfeature "!check"
23
24 SRC_URI=(
25 #http://www.webdav.org/${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${SRCFILE}
27 )
28
29 UP2DATE="updatecmd ${HOMEPAGE} | grep 'Changes in release' | sed 's/.*neon\ \([0-9].*\),.*/\1/g;q'"
30
31 src_compile()
32 {
33 cd ${SRCDIR}
34
35 mconfigure \
36 --enable-shared \
37 --disable-debug \
38 --disable-warnings \
39 --disable-memleak \
40 --disable-tests-install \
41 --with-libxml2 \
42 --with-zlib \
43 --with-ssl=openssl \
44 --without-gssapi \
45 --without-pakchois \
46 || die
47
48 mmake || die
49 }