Add support to configure icu version

This commit is contained in:
Shivam Mathur
2020-09-02 20:18:37 +05:30
parent e3286d1234
commit acc1fdb337
5 changed files with 34 additions and 1 deletions

View File

@ -230,7 +230,7 @@ add_extension_from_source() {
(
add_devtools
delete_extension "$extension"
curl -o /tmp/"$extension".tar.gz "${curl_opts[@]}" https://github.com/"$repo"/archive/"$release".tar.gz
curl -o /tmp/"$extension".tar.gz "${curl_opts[@]}" https://github.com/"$repo"/archive/"$release".tar.gz
tar xf /tmp/"$extension".tar.gz -C /tmp
cd /tmp/"$extension-$release" || exit 1
phpize && ./configure "$args" && make && sudo make install