Add libicu for Ubuntu 14.04

Progress towards #16
This commit is contained in:
Colin Dellow 2018-07-04 21:30:05 -04:00
parent 7e961c4802
commit 8084f14379
1 changed files with 12 additions and 6 deletions

View File

@ -22,14 +22,20 @@ if [ ! -e ../../sqlite/sqlite3 ]; then
make sqlite make sqlite
fi fi
if [ "$(lsb_release -s -r)" == "16.04" ]; then case "$(lsb_release -s -r)" in
14.04)
export ICU_VERSION=52.1
;;
16.04)
export ICU_VERSION=55.1 export ICU_VERSION=55.1
elif [ "$(lsb_release -s -r)" == "18.04" ]; then ;;
18.04)
export ICU_VERSION=60.2 export ICU_VERSION=60.2
else ;;
*)
echo "unsure what libicu version to use" >&2 echo "unsure what libicu version to use" >&2
exit 1 exit 1
fi esac
export ICU_VERSION_U=${ICU_VERSION//./_} export ICU_VERSION_U=${ICU_VERSION//./_}
make "$@" make "$@"