Current File : /home/inlingua/miniconda3/pkgs/libxml2-2.13.5-hfdd30dd_0/info/recipe/build.sh
#!/bin/bash

#./autogen.sh will run configure unless you tell it not to.
export NOCONFIGURE=1
./autogen.sh

export CFLAGS="${CFLAGS} -DTRUE=1"
export CXXFLAGS="${CXXFLAGS} -DTRUE=1"

./configure --prefix="${PREFIX}" \
            --build=${BUILD} \
            --host=${HOST} \
            --with-iconv="${PREFIX}" \
            --with-zlib="${PREFIX}" \
            --with-icu \
            --with-lzma="${PREFIX}" \
            --without-python \
            --with-legacy \
            --enable-static=no
make -j${CPU_COUNT} ${VERBOSE_AT}

if [[ ${target_platform} != osx-64 ]]; then
  make check ${VERBOSE_AT}
fi

make install

# Remove large documentation files that can take up to 6.6/9.2MB of the install
# size.
# https://github.com/conda-forge/libxml2-feedstock/issues/57
rm -rf ${PREFIX}/share/doc
rm -rf ${PREFIX}/share/gtk-doc
rm -rf ${PREFIX}/share/man