0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-20 20:29:37 +00:00
Files
termux-packages/packages/xmlstarlet/build.sh
TomIO 39135f3f11 revbump(main/xmlstarlet): after libxml2 update
fix build with `libxml2` 2.14

Fixes this error when building with libxml2 2.14
src/xml_pyx.c:203:36: error: expected ')'
  203 | pyxExternalSubsetHandler(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name,
      |                                    ^

Probably has something to do with this commit in libxml2
208f27f964

Co-authored-by: Robert Kirkman <rkirkman@termux.dev>
2025-04-14 01:53:32 +02:00

16 lines
692 B
Bash

TERMUX_PKG_HOMEPAGE=https://xmlstar.sourceforge.net/
TERMUX_PKG_DESCRIPTION="Command line XML toolkit"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.6.1
TERMUX_PKG_REVISION=7
TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/project/xmlstar/xmlstarlet/${TERMUX_PKG_VERSION}/xmlstarlet-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=15d838c4f3375332fd95554619179b69e4ec91418a3a5296e7c631b7ed19e7ca
TERMUX_PKG_DEPENDS="libxslt, libxml2"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-libxml-include-prefix=${TERMUX_PREFIX}/include/libxml2"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_post_make_install() {
ln -sfr $TERMUX_PREFIX/bin/xml $TERMUX_PREFIX/bin/xmlstarlet
}