1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-09-10 22:28:53 +00:00

Skip shared parquet/arrow libs, fix icu versions

This commit is contained in:
Colin Dellow
2018-06-27 23:20:33 -04:00
parent 2167d102b4
commit 0aa98ae1a5
2 changed files with 15 additions and 4 deletions

View File

@@ -21,4 +21,15 @@ sudo apt-get install cmake \
if [ ! -e ../../sqlite/sqlite3 ]; then
make sqlite
fi
if [ "$(lsb_release -s -r)" == "16.04" ]; then
export ICU_VERSION=55.1
elif [ "$(lsb_release -s -r)" == "18.04" ]; then
export ICU_VERSION=60.2
else
echo "unsure what libicu version to use" >&2
exit 1
fi
export ICU_VERSION_U=${ICU_VERSION//./_}
make "$@"