unset LD_PRELOAD in su because magist 16.4 is 32 bit only
[termux-packages] / packages / profanity / build.sh
1 TERMUX_PKG_HOMEPAGE=http://profanity.im
2 TERMUX_PKG_DESCRIPTION="Profanity is a console based XMPP client written in C using ncurses and libstrophe, inspired by Irssi"
3 TERMUX_PKG_VERSION=0.5.1
4 TERMUX_PKG_REVISION=1
5 TERMUX_PKG_MAINTAINER="Oliver Schmidhauser @Neo-Oli"
6 TERMUX_PKG_SRCURL=http://profanity.im/profanity-${TERMUX_PKG_VERSION}.tar.gz
7 TERMUX_PKG_SHA256=e3513713e74ec3363fbdbac2919bdc17e249988780cc5a4589d1425807a7feb8
8 TERMUX_PKG_DEPENDS="libandroid-support,ncurses,glib,libmesode,libcurl,readline,libuuid,libotr,gpgme,python"
9 TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --disable-python-plugins"
10 TERMUX_PKG_BUILD_IN_SRC=yes
11
12 termux_step_pre_configure() {
13 CPPFLAGS+=" -I$TERMUX_PREFIX/include/python3.6m"
14 LDFLAGS+=" -lpython3.6m"
15 }
16
17 termux_step_post_configure() {
18 # Enable python support manually, as trying to go using --enable-python-plugins
19 # causes configure trying to execut python:
20 echo '#define HAVE_PYTHON 1' >> $TERMUX_PKG_SRCDIR/src/config.h
21 perl -p -i -e 's|#am__objects_2|am__objects_2|' $TERMUX_PKG_SRCDIR/Makefile
22 }