Created
June 6, 2014 15:16
-
-
Save lifeofguenter/45d71d622a4aeea06346 to your computer and use it in GitHub Desktop.
php-intl 3.0.0 + libicu 4.8.1.1 for debian squeeze without breaking anything (hopefully)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cd /usr/src | |
# wget http://download.icu-project.org/files/icu4c/4.8.1.1/icu4c-4_8_1_1-src.tgz | |
# tar xvfz icu4c-4_8_1_1-src.tgz | |
# cd icu/source | |
# ./configure --prefix=/opt/icu | |
# make && make install | |
# cd /usr/src | |
# wget http://pecl.php.net/get/intl-3.0.0.tgz | |
# tar xvfz intl-3.0.0.tgz | |
# cd intl-3.0.0 | |
# phpize | |
# ./configure --with-icu-dir=/opt/icu | |
# make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment