1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-02 09:27:54 +01:00
postgres/travis/install-raphf.sh

12 lines
219 B
Bash
Executable File

#!/usr/bin/env bash
git clone https://github.com/m6w6/ext-raphf;
pushd ext-raphf;
phpize;
./configure;
make;
make install;
popd;
echo "extension=raphf.so" >> "$(php -r 'echo php_ini_loaded_file();')";
rm -rf ext-raphf