Use tap shivammathur/homebrew-phalcon on darwin

This commit is contained in:
Shivam Mathur
2019-12-31 05:46:33 +05:30
parent 3f42b7d5fb
commit 58fbc33c3a
4 changed files with 10 additions and 17 deletions

View File

@ -33,6 +33,8 @@ export async function addExtensionDarwin(
path.join(__dirname, '../src/scripts/ext/phalcon_darwin.sh') +
' ' +
extension +
' ' +
version +
pipe;
break;
default:

View File

@ -1,16 +1,5 @@
extension=$1
ini_file=$(php -d "date.timezone=UTC" --ini | grep "Loaded Configuration" | sed -e "s|.*:s*||" | sed "s/ //g")
sudo pecl install psr
brew install autoconf automake libtool
git clone https://github.com/phalcon/cphalcon.git
cd cphalcon || echo "could not cd"
git checkout "$(git branch -r | grep -E "origin/${extension: -1}\.\d\.x" | sort -r | head -n 1 | sed "s/ //g")"
sed -i '' 's/zend_ulong/ulong/' build/php7/64bits/phalcon.zep.c
sed -i '' 's/ulong/zend_ulong/' build/php7/64bits/phalcon.zep.c
cd build/php7/64bits && sudo phpize
sudo ./configure --with-php-config=/usr/local/bin/php-config --enable-phalcon
sudo glibtoolize --force
sudo autoreconf
sudo make -i -j6
sudo make install
echo "extension=phalcon.so" >>"$ini_file"
extension_major=${extension: -1}
php_version=$2
brew tap shivammathur/homebrew-phalcon
brew install phalcon@"$php_version"_"$extension_major"