blob: b08214dea8142aae0fdccf0c5df84cb959e8645e (
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
26
27
|
require 'formula'
class MongoPhp < Formula
url 'http://pecl.php.net/get/mongo-1.1.4.tgz'
homepage 'http://pecl.php.net/package/mongo'
md5 '22f1e25690589f6d80d5ed29e56644eb'
version '1.1.4'
def install
Dir.chdir "mongo-#{version}" do
system "phpize"
system "./configure", "--prefix=#{prefix}"
system "make"
prefix.install %w(modules/mongo.so)
end
end
def caveats; <<-EOS.undent
To finish installing MongoDB extension:
* Add the following lines to #{etc}/php.ini:
[mongo]
extension="#{prefix}/mongo.so"
* Restart your webserver
EOS
end
end
|