chiark / gitweb /
Krb5 (#893)
[termux-packages] / packages / krb5 / build.sh
1 TERMUX_PKG_HOMEPAGE=https://web.mit.edu/kerberos
2 TERMUX_PKG_DESCRIPTION="The Kerberos network authentication system"
3 TERMUX_PKG_VERSION=1.15.1
4 TERMUX_PKG_REVISION=1
5 TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, readline, openssl, libutil, libdb"
6 TERMUX_PKG_SRCURL="https://web.mit.edu/kerberos/dist/krb5/1.15/krb5-$TERMUX_PKG_VERSION.tar.gz"
7 TERMUX_PKG_SHA256=437c8831ddd5fde2a993fef425dedb48468109bb3d3261ef838295045a89eb45
8 TERMUX_PKG_FOLDERNAME="krb5-$TERMUX_PKG_VERSION/src"
9 TERMUX_PKG_MAINTAINER="Vishal Biswas @vishalbiswas"
10 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-readline
11 --without-system-verto
12 --with-netlib=-lc
13 --enable-dns-for-realm
14 --sbindir=$TERMUX_PREFIX/bin
15 --with-size-optimizations
16 --with-system-db
17 "
18
19 termux_step_pre_configure () {
20     # cannot test these when cross compiling
21     export krb5_cv_attr_constructor_destructor='yes,yes'
22     export ac_cv_func_regcomp='yes'
23     export ac_cv_printf_positional='yes'
24
25     # bionic doesn't have getpass
26     cp "$TERMUX_PKG_BUILDER_DIR/netbsd_getpass.c" "$TERMUX_PKG_SRCDIR/clients/kpasswd/"
27
28     LDFLAGS="$LDFLAGS -landroid-glob -llog"
29 }
30
31 termux_step_post_make_install () {
32         # Sample KDC config file
33         install -dm 700 $TERMUX_PREFIX/var/krb5kdc
34         install -pm 600 $TERMUX_PKG_SRCDIR/config-files/kdc.conf $TERMUX_PREFIX/var/krb5kdc/kdc.conf
35
36         # Default configuration file
37         install -pm 600 $TERMUX_PKG_SRCDIR/config-files/krb5.conf $TERMUX_PREFIX/etc/krb5.conf
38
39         install -dm 700 $TERMUX_PREFIX/share/aclocal
40         install -m 600 $TERMUX_PKG_SRCDIR/util/ac_check_krb5.m4 $TERMUX_PREFIX/share/aclocal
41 }