diff options
| author | zzzhc | 2011-10-17 17:21:26 +0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-03 21:06:18 -0800 |
| commit | 0dc6e6aaa26054bcc9000334301f161eae5b0029 (patch) | |
| tree | 53b936e87dcd44d3dce00e8acda10cd52a5b46bd /Library/Formula | |
| parent | 49e2034c6442b4f498c9d179901acec55f46b53c (diff) | |
| download | homebrew-0dc6e6aaa26054bcc9000334301f161eae5b0029.tar.bz2 | |
fcgi 2.4.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fcgi.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/fcgi.rb b/Library/Formula/fcgi.rb new file mode 100644 index 000000000..b4b1a35ce --- /dev/null +++ b/Library/Formula/fcgi.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Fcgi < Formula + url 'http://www.fastcgi.com/dist/fcgi-2.4.0.tar.gz' + homepage 'http://www.fastcgi.com/' + md5 'd15060a813b91383a9f3c66faf84867e' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
