mirror of
https://github.com/danog/ext-pq.git
synced 2024-12-03 09:48:02 +01:00
14 lines
266 B
Bash
14 lines
266 B
Bash
|
#!/bin/sh -x
|
||
|
|
||
|
set -e
|
||
|
|
||
|
git clone --depth 1 https://github.com/php/pecl-php-raphf $HOME/raphf
|
||
|
cd $HOME/raphf
|
||
|
|
||
|
$HOME/bin/phpize
|
||
|
./configure --with-php-config=$HOME/bin/php-config --with-pq
|
||
|
|
||
|
make -j2 --quiet install
|
||
|
|
||
|
echo 'extension=raphf.so' > $HOME/php.d/10-raphf.ini
|