homebrew-core/Formula/spawn-fcgi.rb

13 lines
352 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'
sha1 '2b97ea57d9d79745fe8d6051d830fa507b421169'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end