scripts/setup-ubuntu.sh: Huh. We only have Python 3.5 here.
[termux-packages] / packages / libgcrypt / build.sh
1 TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/libgcrypt/
2 TERMUX_PKG_DESCRIPTION="General purpose cryptographic library based on the code from GnuPG"
3 TERMUX_PKG_VERSION=1.8.2
4 TERMUX_PKG_SHA256=c8064cae7558144b13ef0eb87093412380efa16c4ee30ad12ecb54886a524c07
5 TERMUX_PKG_SRCURL=https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-${TERMUX_PKG_VERSION}.tar.bz2
6 TERMUX_PKG_DEPENDS="libgpg-error"
7 TERMUX_PKG_DEVPACKAGE_DEPENDS="libgpg-error-dev"
8 # configure tries to detect pthreads by linking with -lpthread, which does not exist on Android:
9 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
10 ac_cv_lib_pthread_pthread_create=yes
11 --disable-jent-support
12 "
13
14 termux_step_pre_configure () {
15 # libgcrypt uses syslog, which we redirect to android logging:
16 LDFLAGS="$LDFLAGS -llog"
17
18 CFLAGS+=" -no-integrated-as"
19 if [ $TERMUX_ARCH = "arm" ]; then
20 # See http://marc.info/?l=gnupg-devel&m=139136972631909&w=3
21 CFLAGS+=" -mno-unaligned-access"
22 # Avoid text relocations:
23 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" gcry_cv_gcc_inline_asm_neon=no"
24 elif [ $TERMUX_ARCH = "i686" ] || [ $TERMUX_ARCH = "x86_64" ]; then
25 # Fix i686 android build, also in https://bugzilla.gnome.org/show_bug.cgi?id=724050
26 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-asm"
27 fi
28 }