homebrew-core/Formula/nginx.rb
Adam Vandenberg 75d0d0a42f Update nginx to 0.7.62
The previous fix to do this actually /downgraded/ it to 0.7.2.
2009-09-29 23:30:20 +01:00

14 lines
317 B
Ruby

require 'brewkit'
class Nginx < Formula
@url='http://sysoev.ru/nginx/nginx-0.7.62.tar.gz'
@homepage='http://nginx.net/'
@md5='ab22f1b7f098a90d803a3abb94d23f7e'
depends_on 'pcre'
def install
system "./configure", "--prefix=#{prefix}", "--with-http_ssl_module"
system "make install"
end
end