From ccc722b7ed330198d82a3cf28ead76d6d107a70a Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 6 Jun 2022 21:25:48 +0000 Subject: added java --- repo/neon/neon.xibuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 repo/neon/neon.xibuild (limited to 'repo/neon') diff --git a/repo/neon/neon.xibuild b/repo/neon/neon.xibuild new file mode 100644 index 0000000..1e2d362 --- /dev/null +++ b/repo/neon/neon.xibuild @@ -0,0 +1,33 @@ +#!/bin/sh + +NAME="neon" +DESC="HTTP and WebDAV client library with a C interface" + +MAKEDEPS="expat openssl zlib gzip xmlto autoconf automake libtool" + +PKG_VER=0.32.2 +SOURCE="https://github.com/notroj/neon/archive/$PKG_VER.tar.gz" + +prepare() { + ./autogen.sh +} + +build() { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --with-ssl \ + --with-expat \ + --without-gssapi \ + --disable-nls \ + --enable-shared \ + --disable-static \ + --enable-threadsafe-ssl=posix \ + --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt + make && make docs +} + +package() { + make -j1 DESTDIR="$PKG_DEST" install +} -- cgit v1.2.1