NGinx formula
A HTTP and mail proxy server licensed under a 2-clause BSD-like license.
This commit is contained in:
parent
3abd5ee762
commit
0cce3529ae
1 changed files with 16 additions and 0 deletions
16
Formula/nginx.rb
Normal file
16
Formula/nginx.rb
Normal 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
|
Loading…
Reference in a new issue