2020-02-25 12:59:57 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://profanity-im.github.io
|
2016-09-06 00:29:07 +02:00
|
|
|
TERMUX_PKG_DESCRIPTION="Profanity is a console based XMPP client written in C using ncurses and libstrophe, inspired by Irssi"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
2016-09-06 00:29:07 +02:00
|
|
|
TERMUX_PKG_MAINTAINER="Oliver Schmidhauser @Neo-Oli"
|
2020-07-04 09:13:44 +02:00
|
|
|
TERMUX_PKG_VERSION=0.9.5
|
2020-10-08 17:50:51 +02:00
|
|
|
TERMUX_PKG_REVISION=2
|
2019-07-31 23:09:31 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/profanity-im/profanity/releases/download/$TERMUX_PKG_VERSION/profanity-$TERMUX_PKG_VERSION.tar.gz
|
2020-07-04 09:13:44 +02:00
|
|
|
TERMUX_PKG_SHA256=23f7b2e5c6cf85913b9e7a228802bca9ecb1d1cf3bf8f8f285e9676176a24902
|
2019-09-19 19:56:40 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libandroid-support, libffi, ncurses, glib, libmesode, libcurl, readline, libuuid, libotr, gpgme, python, libassuan, libgpg-error, zlib, libsignal-protocol-c"
|
2019-07-20 10:42:33 +02:00
|
|
|
TERMUX_PKG_BREAKS="profanity-dev"
|
|
|
|
TERMUX_PKG_REPLACES="profanity-dev"
|
2019-02-23 08:52:52 +01:00
|
|
|
# openssl, libexpat needed by libmesode, pcre needed by glib:
|
2019-07-20 10:42:33 +02:00
|
|
|
TERMUX_PKG_BUILD_DEPENDS="openssl, libexpat, pcre, libgcrypt, libcrypt"
|
2019-11-29 19:26:22 +01:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --disable-python-plugins --without-xscreensaver"
|
2019-08-12 17:28:41 +02:00
|
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
2016-09-06 00:29:07 +02:00
|
|
|
|
|
|
|
termux_step_pre_configure() {
|
2020-10-08 17:50:51 +02:00
|
|
|
CPPFLAGS+=" -I$TERMUX_PREFIX/include/python3.9"
|
|
|
|
LDFLAGS+=" -lpython3.9"
|
2016-09-17 01:44:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_post_configure() {
|
2019-02-23 08:53:17 +01:00
|
|
|
# Enable python support manually, as trying to go using --enable-python-plugins
|
|
|
|
# causes configure trying to execute 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
|
|
|
}
|