homebrew-core/Formula/spawn-fcgi.rb
Biju Punalor c93435b023 spawn-fcgi is used to spawn FastCGI processes.
useful with nginx.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-14 12:17:12 -07:00

12 lines
342 B
Ruby

require 'formula'
class SpawnFcgi <Formula
url 'http://www.lighttpd.net/download/spawn-fcgi-1.6.3.tar.gz'
homepage 'http://redmine.lighttpd.net/projects/spawn-fcgi'
md5 '6d75f9e9435056fa1e574d836d823cd0'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end