mirror of
https://github.com/danog/ext-pq.git
synced 2024-12-02 09:18:02 +01:00
11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
$HOME/bin/phpize
|
|
./configure --with-php-config=$HOME/bin/php-config --with-pq
|
|
|
|
make -j2 --quiet install
|
|
|
|
echo 'extension=pq.so' > $HOME/php.d/20-pq.ini
|