From b88f3a075fdffd07b0ab31a8e8db5e6b932f157d Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Fri, 4 Feb 2022 20:36:47 +0100 Subject: [PATCH] libhtmlcxx: fix compilation error, package needs iconv.h --- packages/libhtmlcxx/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/libhtmlcxx/build.sh b/packages/libhtmlcxx/build.sh index 5fb20d566..ba635bcf0 100644 --- a/packages/libhtmlcxx/build.sh +++ b/packages/libhtmlcxx/build.sh @@ -3,6 +3,7 @@ TERMUX_PKG_DESCRIPTION="A simple non-validating css1 and html parser for C++" TERMUX_PKG_LICENSE="LGPL-2.0" TERMUX_PKG_MAINTAINER="@termux" TERMUX_PKG_VERSION=0.87 +TERMUX_PKG_REVISION=1 TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/sourceforge/htmlcxx/htmlcxx-${TERMUX_PKG_VERSION}.tar.gz TERMUX_PKG_SHA256=5d38f938cf4df9a298a5346af27195fffabfef9f460fc2a02233cbcfa8fc75c8 -TERMUX_PKG_DEPENDS="libc++" +TERMUX_PKG_DEPENDS="libc++, iconv"