Created
January 10, 2017 11:33
-
-
Save AykutCevik/47acccca435e8fb8be7bcd18086b14b8 to your computer and use it in GitHub Desktop.
PHP 7.1 brew APCU BC (Mac OSX)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-php/Abstract/abstract-php-extension.rb" | |
class Php71ApcuBc < AbstractPhp71Extension | |
init | |
desc "APC User Cache - BC" | |
homepage "https://pecl.php.net/package/apcu_bc" | |
url "https://pecl.php.net/get/apcu_bc-1.0.1.tgz" | |
sha256 "512674d891104d6da91811dbb89d28ab3faa356ee0ab4cbeae9bba9cf3e971cb" | |
head "https://github.com/krakjoe/apcu-bc.git" | |
bottle do | |
cellar :any_skip_relocation | |
sha256 "90e7b9b4090376d7677438e2c094c09717e554e2f480837614a7b4e79b5ad1a0" => :el_capitan | |
sha256 "b54b4f1acc267d44a865dcc7d672f7593599c76b3888122bd383c079e7043c7a" => :yosemite | |
sha256 "7e2b62455334fcfb60f3750464709f8b0f68181764a65c2fac5bdaf92c839bba" => :mavericks | |
end | |
depends_on "php71-apcu" | |
def install | |
Dir.chdir "apcu_bc-#{version}" unless build.head? | |
ENV.universal_binary if build.universal? | |
args = [] | |
args << "--enable-apc" | |
safe_phpize | |
# link in the apcu extension headers | |
mkdir_p "ext/apcu" | |
cp Dir.glob("#{Formula["php71-apcu"].opt_prefix}/include/*.h"), "ext/apcu/" | |
system "./configure", "--prefix=#{prefix}", | |
phpconfig, | |
*args | |
system "make" | |
prefix.install "modules/apc.so" | |
write_config_file if build.with? "config-file" | |
end | |
def extension | |
"apc" | |
end | |
# This is changed so that it will be included after apcu | |
def config_filename | |
"ext-bc-" + extension + ".ini" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment