blob: 44d56a01ffe86de0103fad8ef627c712ec2bda44 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env sh
git clone https://github.com/php/php-src
cd php-src/sapi
git clone https://github.com/krakjoe/phpdbg.git
cd ../
./buildconf --force
./configure --disable-all --enable-phpdbg --enable-maintainer-zts
make
make test-phpdbg
|