homebrew-core/Formula/nginx.rb

17 lines
324 B
Ruby
Raw Normal View History

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