libxml2/.gitlab-ci/downstream-perl.sh
2025-03-09 15:14:50 +01:00

19 lines
315 B
Bash

#!/bin/sh
set -e
sh autogen.sh --without-python
make -j$(nproc)
srcdir=$(pwd)
incdir=$srcdir/include
libdir=$srcdir/.libs
git clone --depth 1 -b test-suite-libxml2 \
https://github.com/nwellnhof/perl-XML-LibXML.git
cd perl-XML-LibXML
perl Makefile.PL INC="-I$incdir" LIBS="-L$libdir -lxml2"
make
make test