mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
19 lines
315 B
Bash
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
|