1
0
mirror of https://github.com/danog/PrimeModule.git synced 2024-11-30 04:39:09 +01:00
PrimeModule/tests/install_deps.sh

18 lines
338 B
Bash
Raw Normal View History

2017-05-06 21:27:38 +02:00
#!/bin/bash -e
2017-05-07 15:09:52 +02:00
export PATH=$PATH:~/.phpenv/versions/$(phpenv version-name)/bin
2017-05-07 15:05:34 +02:00
2017-05-06 21:27:38 +02:00
cd /tmp
git clone https://github.com/CopernicaMarketingSoftware/PHP-CPP
cd PHP-CPP
make -j16
sudo make install
cd ../
git clone https://github.com/danog/PrimeModule-ext
cd PrimeModule-ext
make -j16
sudo make install
2017-05-06 21:30:31 +02:00
phpenv config-add primemodule.ini
2017-05-06 21:27:38 +02:00
cd ..