1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/travis/install-ev.sh
2019-09-21 23:17:45 +02:00

11 lines
236 B
Bash
Executable File

#!/usr/bin/env bash
curl -LS https://pecl.php.net/get/ev | tar -xz \
&& pushd ev-* \
&& phpize \
&& ./configure \
&& make -j4 \
&& make install \
&& popd \
&& echo "extension=ev.so" >> "$(php -r 'echo php_ini_loaded_file();')";