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