You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
we just run this in a shell provisioner for after the puppet provision:
libxml_path=$(find "${ROOT_DIR}/lib" -maxdepth 1 -type f -name 'libxml*')if [ !-f"$libxml_path" ];thenecho"Error: Unable to find libxml file, aborting.">&2exit 1
fi
libxml_name=$(basename "$libxml_path"'.tar.gz')
libxml_install_dir=$(dirname $(find /usr -name "libxml2.so"))echo"Installing a working version of $libxml_name for spatial harvesters ..."if [ !-d"${ROOT_DIR}/lib/${libxml_name}" ];thenecho"Unpacking $(basename ${libxml_path})"
tar xfz "$libxml_path" -C "${ROOT_DIR}/lib"ficd"${ROOT_DIR}/lib/${libxml_name}"
./configure --libdir="$libxml_install_dir"
make
make install
if! xmllint --version;thenecho"Error installing ${libxml_name}, aborting.">&2exit 1
fi
obviously with libxml2-2.9.0.tar.gz at the correct path.
for real though, this is a crazy requirement
davidread
changed the title
libxml2 version wrong for ckanext-spacial
libxml2 version wrong for ckanext-spatial
Sep 16, 2015
Needs this interesting work around:
https://ckanext-spatial.readthedocs.org/en/latest/install.html#when-running-the-spatial-harvesters
The text was updated successfully, but these errors were encountered: