blob: 1e825ce9f73bf5b99da2a7d465caa5899ad63e89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|