hyperf/.travis/swoole.install.sh

11 lines
302 B
Bash
Raw Normal View History

2019-06-24 13:10:41 +08:00
#!/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
phpize
./configure --enable-openssl --enable-mysqlnd --enable-http2
2019-06-24 13:10:41 +08:00
make -j$(nproc)
make install