45 lines
1.3 KiB
Bash
45 lines
1.3 KiB
Bash
TERMUX_PKG_HOMEPAGE=http://repo.or.cz/alpine.git
|
|
TERMUX_PKG_DESCRIPTION="Fast, easy to use email client"
|
|
TERMUX_PKG_VERSION=2.21
|
|
TERMUX_PKG_SRCURL=https://fossies.org/linux/misc/alpine-$TERMUX_PKG_VERSION.tar.xz
|
|
TERMUX_PKG_DEPENDS="libcrypt, ncurses, openssl"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--disable-debug
|
|
--with-c-client-target=lnx
|
|
--without-krb5
|
|
--without-ldap
|
|
--without-pthread
|
|
--without-tcl
|
|
--with-system-pinerc=${TERMUX_PREFIX}/etc/pine.conf
|
|
--with-passfile=$TERMUX_ANDROID_HOME/.pine-passfile
|
|
"
|
|
TERMUX_PKG_BUILD_IN_SRC=yes
|
|
TERMUX_PKG_SHA256=6030b6881b8168546756ab3a5e43628d8d564539b0476578e287775573a77438
|
|
|
|
termux_step_pre_configure () {
|
|
export TCC=$CC
|
|
export TRANLIB=$RANLIB
|
|
export SPELLPROG=${TERMUX_PREFIX}/bin/hunspell
|
|
export alpine_SSLVERSION=old
|
|
export TPATH=$PATH
|
|
|
|
LDFLAGS+=" -lcrypt -llog"
|
|
|
|
# To get S_IREAD and friends:
|
|
CPPFLAGS+=" -D__USE_BSD"
|
|
|
|
cp $TERMUX_PKG_BUILDER_DIR/getpass.c $TERMUX_PKG_SRCDIR/include/
|
|
cp $TERMUX_PKG_BUILDER_DIR/getpass.h $TERMUX_PKG_SRCDIR/include/
|
|
cp $TERMUX_PKG_BUILDER_DIR/pine.conf $TERMUX_PREFIX/etc/pine.conf
|
|
|
|
touch $TERMUX_PKG_SRCDIR/imap/lnxok
|
|
}
|
|
|
|
termux_step_post_configure() {
|
|
cd pith
|
|
$CC_FOR_BUILD help_c_gen.c -o help_c_gen
|
|
$CC_FOR_BUILD help_h_gen.c -o help_h_gen
|
|
touch -d "next hour" help_c_gen help_h_gen
|
|
}
|
|
|