blob: 732cfe4341e9ac60b3682c954b461f0b0cd3b91f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class PcntlPhp < Formula
url 'http://museum.php.net/php5/php-5.3.6.tar.gz'
homepage 'http://php.net/manual/en/book.pcntl.php'
md5 '88a2b00047bc53afbbbdf10ebe28a57e'
def install
Dir.chdir "ext/pcntl"
system "phpize"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
prefix.install "modules/pcntl.so"
end
def caveats; <<-EOS.undent
To finish pcntl-php installation, you need to add the
following line into php.ini:
extension="#{prefix}/pcntl.so"
Then, restart your webserver and check in phpinfo if
you're able to see something about pcntl.
EOS
end
end
|