coreutils: Update from 8.27 to 8.28
[termux-packages] / packages / libsasl / build.sh
1 TERMUX_PKG_HOMEPAGE=http://asg.web.cmu.edu/sasl/
2 TERMUX_PKG_DESCRIPTION="Cyrus SASL - authentication abstraction library"
3 TERMUX_PKG_VERSION=2.1.26
4 TERMUX_PKG_SRCURL=ftp://ftp.cyrusimap.org/cyrus-sasl/cyrus-sasl-${TERMUX_PKG_VERSION}.tar.gz
5 TERMUX_PKG_SHA256=8fbc5136512b59bb793657f36fadda6359cae3b08f01fd16b3d406f1345b7bc3
6 # Seems to be race issues in build (symlink creation)::
7 TERMUX_MAKE_PROCESSES=1
8 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
9 ac_cv_func_syslog=no
10 ac_cv_header_syslog_h=no
11 --disable-gssapi
12 --disable-otp
13 --sysconfdir=$TERMUX_PREFIX/etc
14 --with-dblib=none
15 --with-dbpath=$TERMUX_PREFIX/var/lib/sasldb
16 --without-des
17 --without-saslauthd
18 --with-plugindir=$TERMUX_PREFIX/lib/sasl2
19 "
20 TERMUX_PKG_RM_AFTER_INSTALL="bin/pluginviewer"
21
22 termux_step_post_configure () {
23 # Build wants to run makemd5 at build time:
24 gcc $TERMUX_PKG_SRCDIR/include/makemd5.c -o $TERMUX_PKG_BUILDDIR/include/makemd5
25 touch -d "next hour" $TERMUX_PKG_BUILDDIR/include/makemd5
26 }