c352216c63
Variables TERMUX_PKG_PLATFORM_INDEPENDENT TERMUX_DEBUG TERMUX_PKG_HAS_DEBUG TERMUX_PKG_ESSENTIAL TERMUX_SUBPKG_ESSENTIAL TERMUX_PKG_NO_STATICSPLIT TERMUX_PKG_BUILD_IN_SRC TERMUX_PKG_FORCE_CMAKE TERMUX_PKG_HOSTBUILD should not accept arbitrary values for marking them "enabled". Instead they should accept boolean values which makes them easier to handle and also makes their meaning clear. build-package.sh should make decision based on variable's value but not on whether it is set or empty. %ci:no-build
27 lines
1.3 KiB
Bash
27 lines
1.3 KiB
Bash
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"
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="Oliver Schmidhauser @Neo-Oli"
|
|
TERMUX_PKG_VERSION=0.7.0
|
|
TERMUX_PKG_SHA256=f1eb99be01683d41b891b0f997f4c873c9bb87b0b6b8400b7fccb8e553d514bb
|
|
TERMUX_PKG_SRCURL=https://github.com/profanity-im/profanity/releases/download/$TERMUX_PKG_VERSION/profanity-$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_DEPENDS="libandroid-support, libffi, ncurses, glib, libmesode, libcurl, readline, libuuid, libotr, gpgme, python, libassuan, libgpg-error, zlib"
|
|
TERMUX_PKG_BREAKS="profanity-dev"
|
|
TERMUX_PKG_REPLACES="profanity-dev"
|
|
# openssl, libexpat needed by libmesode, pcre needed by glib:
|
|
TERMUX_PKG_BUILD_DEPENDS="openssl, libexpat, pcre, libgcrypt, libcrypt"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --disable-python-plugins"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_pre_configure() {
|
|
CPPFLAGS+=" -I$TERMUX_PREFIX/include/python3.7m"
|
|
LDFLAGS+=" -lpython3.7m"
|
|
}
|
|
|
|
termux_step_post_configure() {
|
|
# 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
|
|
}
|