11 lines
315 B
Bash
11 lines
315 B
Bash
#!/usr/bin/env bash
|
|
wget https://github.com/swoole/swoole-src/archive/v"${SW_VERSION}".tar.gz -O swoole.tar.gz
|
|
mkdir -p swoole
|
|
tar -xf swoole.tar.gz -C swoole --strip-components=1
|
|
rm swoole.tar.gz
|
|
cd swoole || exit
|
|
phpize
|
|
./configure --enable-openssl --enable-mysqlnd --enable-http2
|
|
make -j "$(nproc)"
|
|
make install
|