mirror of
https://github.com/danog/file.git
synced 2024-12-02 09:17:57 +01:00
11 lines
201 B
Bash
11 lines
201 B
Bash
|
#!/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();')";
|