2016-09-06 00:29:07 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=http://profanity.im
|
|
|
|
TERMUX_PKG_DESCRIPTION="Profanity is a console based XMPP client written in C using ncurses and libstrophe, inspired by Irssi"
|
2016-09-17 01:44:12 +02:00
|
|
|
TERMUX_PKG_VERSION=0.5.0
|
2017-01-15 19:37:14 +01:00
|
|
|
TERMUX_PKG_REVISION=2
|
2016-09-06 00:29:07 +02:00
|
|
|
TERMUX_PKG_MAINTAINER="Oliver Schmidhauser @Neo-Oli"
|
|
|
|
TERMUX_PKG_SRCURL=http://profanity.im/profanity-${TERMUX_PKG_VERSION}.tar.gz
|
2016-09-28 20:16:33 +02:00
|
|
|
TERMUX_PKG_DEPENDS="ncurses,glib,libmesode,libcurl,readline,libuuid,libotr,gpgme,python"
|
2016-09-17 01:44:12 +02:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --disable-python-plugins"
|
2016-09-06 00:29:07 +02:00
|
|
|
TERMUX_PKG_BUILD_IN_SRC=yes
|
|
|
|
|
|
|
|
termux_step_pre_configure() {
|
2017-01-15 19:37:14 +01:00
|
|
|
CPPFLAGS+=" -I$TERMUX_PREFIX/include/python3.6m"
|
|
|
|
LDFLAGS+=" -lpython3.6m"
|
2016-09-17 01:44:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_post_configure() {
|
|
|
|
# Enable python support manually, as trying to go using --enable-python-plugins
|
|
|
|
# causes configure trying to execut python:
|
|
|
|
echo '#define HAVE_PYTHON 1' >> $TERMUX_PKG_SRCDIR/src/config.h
|
|
|
|
perl -p -i -e 's|#am__objects_2|am__objects_2|' $TERMUX_PKG_SRCDIR/Makefile
|
2016-09-06 00:29:07 +02:00
|
|
|
}
|