texlive-tlmgr: add subpackage
[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.16
4 TERMUX_PKG_SHA256=faeb125f83b0fb4cdb2f99f088140631bb47d975982de0956d18c85842969e08
5 TERMUX_PKG_SRCURL="https://web.mit.edu/kerberos/dist/krb5/$TERMUX_PKG_VERSION/krb5-$TERMUX_PKG_VERSION.tar.gz"
6 TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, readline, openssl, libutil, libdb"
7 TERMUX_PKG_MAINTAINER="Vishal Biswas @vishalbiswas"
8 TERMUX_PKG_CONFFILES="etc/krb5.conf var/krb5kdc/kdc.conf"
9 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-readline
10 --without-system-verto
11 --with-netlib=-lc
12 --enable-dns-for-realm
13 --sbindir=$TERMUX_PREFIX/bin
14 --with-size-optimizations
15 --with-system-db
16 DEFCCNAME=$TERMUX_PREFIX/tmp/krb5cc_%{uid}
17 DEFKTNAME=$TERMUX_PREFIX/etc/krb5.keytab
18 DEFCKTNAME=$TERMUX_PREFIX/var/krb5/user/%{euid}/client.keytab
19 "
20
21 termux_step_post_extract_package() {
22 TERMUX_PKG_SRCDIR+="/src"
23 }
24
25 termux_step_pre_configure () {
26 # cannot test these when cross compiling
27 export krb5_cv_attr_constructor_destructor='yes,yes'
28 export ac_cv_func_regcomp='yes'
29 export ac_cv_printf_positional='yes'
30
31 # bionic doesn't have getpass
32 cp "$TERMUX_PKG_BUILDER_DIR/netbsd_getpass.c" "$TERMUX_PKG_SRCDIR/clients/kpasswd/"
33
34 CFLAGS="$CFLAGS -D_PASSWORD_LEN=PASS_MAX"
35 LDFLAGS="$LDFLAGS -landroid-glob -llog"
36 }
37
38 termux_step_post_make_install () {
39 # Enable logging to STDERR by default
40 echo -e "\tdefault = STDERR" >> $TERMUX_PKG_SRCDIR/config-files/krb5.conf
41
42 # Sample KDC config file
43 install -dm 700 $TERMUX_PREFIX/var/krb5kdc
44 install -pm 600 $TERMUX_PKG_SRCDIR/config-files/kdc.conf $TERMUX_PREFIX/var/krb5kdc/kdc.conf
45
46 # Default configuration file
47 install -pm 600 $TERMUX_PKG_SRCDIR/config-files/krb5.conf $TERMUX_PREFIX/etc/krb5.conf
48
49 install -dm 700 $TERMUX_PREFIX/share/aclocal
50 install -m 600 $TERMUX_PKG_SRCDIR/util/ac_check_krb5.m4 $TERMUX_PREFIX/share/aclocal
51 }