pyodide/packages/libxml/meta.yaml

27 lines
612 B
YAML
Raw Normal View History

package:
name: libxml
version: 2.9.10
source:
sha256: aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f
url: http://xmlsoft.org/sources/libxml2-2.9.10.tar.gz
requirements:
host:
- zlib
- libiconv
build:
library: true
script: |
emconfigure ./configure \
CFLAGS="-fPIC" \
--disable-dependency-tracking \
--disable-shared \
--without-python \
--with-iconv="${WASM_LIBRARY_DIR}/lib" \
--with-zlib="${WASM_LIBRARY_DIR}/lib" \
--prefix=${WASM_LIBRARY_DIR}
emmake make -j ${PYODIDE_JOBS:-3}
emmake make install