mirror of
https://github.com/danog/ext-pq.git
synced 2025-01-22 22:01:33 +01:00
11 lines
229 B
Bash
Executable File
11 lines
229 B
Bash
Executable File
#!/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
|