NGinx formula

A HTTP and mail proxy server licensed under a 2-clause BSD-like license.
master
Julien BLANCHARD 2009-09-01 22:23:31 +02:00 committed by Max Howell
parent 3abd5ee762
commit 0cce3529ae
1 changed files with 16 additions and 0 deletions

16
Formula/nginx.rb Normal file
View File

@ -0,0 +1,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
LibraryDep.new 'pcre'
end
def install
system "./configure", "--prefix=#{prefix}", "--with-http_ssl_module"
system "make install"
end
end