alpine: update to 2.21 (#961)
[termux-packages] / disabled-packages / alpine / build.sh
1 TERMUX_PKG_HOMEPAGE=http://patches.freeiz.com
2 TERMUX_PKG_DESCRIPTION="Fast, easy to use email client"
3 TERMUX_PKG_VERSION=2.21
4 TERMUX_PKG_SRCURL=http://patches.freeiz.com/alpine/release/src/alpine-${TERMUX_PKG_VERSION}.tar.xz
5 TERMUX_PKG_DEPENDS="openssl"
6 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-c-client-target=lnx --without-krb5 --without-pthread --without-tcl --without-ldap --disable-debug --with-system-pinerc=${TERMUX_PREFIX}/etc/pine.conf"
7 TERMUX_PKG_BUILD_IN_SRC=yes
8 TERMUX_PKG_SHA256=6030b6881b8168546756ab3a5e43628d8d564539b0476578e287775573a77438
9 TERMUX_PKG_PATCHURL=http://patches.freeiz.com/alpine/patches/alpine-${TERMUX_PKG_VERSION}/maildir.patch.gz
10 TERMUX_PKG_PATCHSHA256=1229ea9ec4e150dda1d2da866730a777148874e4667c54cd2c488101b5db8099
11 # requires installing autopoint default docker image doesn't have that installed as yet.
12 # adding huge patchsets to termux-packages repo is not optimal so we do it this way for now.
13 termux_step_post_extract_package() {
14 local filename
15 filename=$(basename "$TERMUX_PKG_PATCHURL")
16 local file="$TERMUX_PKG_CACHEDIR/$filename"
17 termux_download "$TERMUX_PKG_PATCHURL" "$file" "$TERMUX_PKG_PATCHSHA256"
18 gunzip -c $file | patch -s -p1
19 }
20
21 termux_step_pre_configure () {
22 export TCC=$CC
23 export TRANLIB=$RANLIB
24 export SPELLPROG=${TERMUX_PREFIX}/bin/hunspell
25 export alpine_SSLVERSION=old
26 LDFLAGS+=" -lcrypt -llog"
27 cp $TERMUX_PKG_BUILDER_DIR/getpass.c $TERMUX_PKG_SRCDIR/include/
28 cp $TERMUX_PKG_BUILDER_DIR/getpass.h $TERMUX_PKG_SRCDIR/include/
29 cp $TERMUX_PKG_BUILDER_DIR/pine.conf $TERMUX_PREFIX/etc/pine.conf
30 cd $TERMUX_PKG_SRCDIR
31 autoreconf -if
32 touch $TERMUX_PKG_SRCDIR/imap/lnxok
33 export TPATH=$PATH
34 }
35
36 termux_step_post_configure() {
37 cd pith
38 $CC_FOR_BUILD help_c_gen.c -o help_c_gen
39 $CC_FOR_BUILD help_h_gen.c -o help_h_gen
40 }
41