diff options
| author | Biju Punalor | 2010-06-14 15:02:51 +0530 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-14 12:17:12 -0700 |
| commit | 8a229274c9eb4a8c7c439fbcd9b2bf1d5f1115a6 (patch) | |
| tree | f5d78e2cb3e56681f434421b427a0acb225ea960 /Library/Formula | |
| parent | 68b5abe92dfa1bad66f2b249e90dd4c1891af0a1 (diff) | |
| download | homebrew-8a229274c9eb4a8c7c439fbcd9b2bf1d5f1115a6.tar.bz2 | |
spawn-fcgi is used to spawn FastCGI processes.
useful with nginx.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/spawn-fcgi.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/spawn-fcgi.rb b/Library/Formula/spawn-fcgi.rb new file mode 100644 index 000000000..1e825ce9f --- /dev/null +++ b/Library/Formula/spawn-fcgi.rb @@ -0,0 +1,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 |
