Skip to content

Instantly share code, notes, and snippets.

@lifeofguenter
Created June 6, 2014 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lifeofguenter/45d71d622a4aeea06346 to your computer and use it in GitHub Desktop.
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)
# 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