mirror of
https://github.com/danog/ext-pq.git
synced 2025-01-23 06:12:00 +01:00
11 lines
229 B
Bash
11 lines
229 B
Bash
|
#!/bin/sh -x
|
||
|
|
||
|
set -e
|
||
|
|
||
|
$HOME$BUILD_INSTALL_DIR/bin/phpize
|
||
|
./configure --with-php-config=$HOME$BUILD_INSTALL_DIR/bin/php-config --with-pq
|
||
|
|
||
|
make -j2 --quiet install
|
||
|
|
||
|
echo 'extension=pq.so' > $HOME$BUILD_INSTALL_DIR/conf.d/20-pq.ini
|