1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 17:28:24 +01:00
file/travis/install-eio.sh

11 lines
201 B
Bash
Raw Normal View History

#!/usr/bin/env bash
git clone https://github.com/rosmanov/pecl-eio
pushd pecl-eio;
phpize;
./configure;
make;
make install;
popd;
echo "extension=eio.so" >> "$(php -r 'echo php_ini_loaded_file();')";