distributable: url: https://download.gnome.org/sources/libxml2/{{ version.marketing }}/libxml2-{{ version }}.tar.xz strip-components: 1 versions: github: GNOME/libxml2/tags runtime: env: PYTHONPATH: ${{prefix}}/lib/python3.11/site-packages build: dependencies: tea.xyz/gx/cc: c99 tea.xyz/gx/make: '*' python.org: ^3 freedesktop.org/pkg-config: ~0.29 script: | ./configure $ARGS make --jobs {{ hw.concurrency }} make install cd {{prefix}}/bin sed -i.bak 's|{{prefix}}|"$(cd "$(dirname "$0")/.." \&\& pwd)"|' xml2-config rm *.bak # a lot of stuff is surprised at the libxml2 prefix cd ../include mv libxml2/libxml . rmdir libxml2 ln -s . libxml2 env: ARGS: - --prefix={{prefix}} - --without-lzma test: dependencies: tea.xyz/gx/cc: c99 python.org: ^3 script: | cc `xml2-config --cflags --libs` test.c ./a.out python -c "import libxml2" provides: - bin/xml2-config - bin/xmlcatalog - bin/xmllint