blob: 4863381e612e6640c38b494a93215c52c04c4eee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'brewkit'
class Nginx <Formula
@url='http://sysoev.ru/nginx/nginx-0.7.61.tar.gz'
@homepage='http://nginx.net/'
@md5='6ebf89b9b00a3b82734e93c32da7df07'
def deps
'pcre'
end
def install
system "./configure", "--prefix=#{prefix}", "--with-http_ssl_module"
system "make install"
end
end
|