Files
termux-packages/packages/openldap/build.sh
termux-pacman-bot 88219cf902 bump(main/openldap): 2.6.8
This commit has been automatically submitted by Github Actions.
2024-05-22 18:38:23 +00:00

30 lines
884 B
Bash

TERMUX_PKG_HOMEPAGE=https://openldap.org
TERMUX_PKG_DESCRIPTION="OpenLDAP server"
TERMUX_PKG_LICENSE="OpenLDAP"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="2.6.8"
TERMUX_PKG_SRCURL=https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-${TERMUX_PKG_VERSION}.tgz
TERMUX_PKG_SHA256=48969323e94e3be3b03c6a132942dcba7ef8d545f2ad35401709019f696c3c4e
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="libsasl, libuuid, openssl"
TERMUX_PKG_BREAKS="openldap-dev"
TERMUX_PKG_REPLACES="openldap-dev"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_MAKE_ARGS="STRIP="
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
ol_cv_lib_icu=no
ac_cv_func_memcmp_working=yes
--enable-dynamic
--with-yielding_select=yes
--enable-backends=no
--enable-monitor
--enable-mdb
--enable-ldap"
termux_step_pre_configure() {
autoreconf -fi
CFLAGS+=" -DMDB_USE_ROBUST=0"
LDFLAGS+=" -lcrypto -llog"
}