mirror of
https://github.com/danog/amp.git
synced 2024-12-02 17:37:50 +01:00
11 lines
242 B
Bash
Executable File
11 lines
242 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
git clone https://github.com/amphp/ext-fiber \
|
|
&& pushd ext-fiber \
|
|
&& phpize \
|
|
&& ./configure \
|
|
&& make -j4 \
|
|
&& make install \
|
|
&& popd \
|
|
&& echo "extension=fiber.so" >> "$(php -r 'echo php_ini_loaded_file();')";
|