2017-04-22 00:48:19 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://memcached.org/
|
|
|
|
TERMUX_PKG_DESCRIPTION="Free & open source, high-performance, distributed memory object caching system"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
2018-11-05 23:03:17 +01:00
|
|
|
TERMUX_PKG_VERSION=1.5.12
|
2018-12-28 00:40:53 +01:00
|
|
|
TERMUX_PKG_REVISION=1
|
2018-11-05 23:03:17 +01:00
|
|
|
TERMUX_PKG_SHA256=c02f97d5685617b209fbe25f3464317b234d765b427d254c2413410a5c095b29
|
2018-05-25 21:15:00 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://www.memcached.org/files/memcached-$TERMUX_PKG_VERSION.tar.gz
|
2017-04-22 00:48:19 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libevent, libsasl"
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-sasl --disable-coverage"
|
|
|
|
TERMUX_PKG_BUILD_IN_SRC=yes
|
|
|
|
|
|
|
|
termux_step_pre_configure() {
|
|
|
|
export ac_cv_c_endian=little
|
|
|
|
|
|
|
|
# fix SASL configuration path
|
|
|
|
perl -p -i -e "s#/etc/sasl#$TERMUX_PREFIX/etc/sasl#" $TERMUX_PKG_BUILDDIR/sasl_defs.c
|
|
|
|
|
|
|
|
# getsubopt() taken from https://github.com/lxc/lxc/blob/master/src/include/getsubopt.c
|
|
|
|
cp $TERMUX_PKG_BUILDER_DIR/getsubopt.c $TERMUX_PKG_SRCDIR
|
|
|
|
cp $TERMUX_PKG_BUILDER_DIR/getsubopt.h $TERMUX_PKG_SRCDIR
|
2017-10-14 23:57:39 +02:00
|
|
|
}
|