aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fcgi.rb
blob: b4b1a35ce06dea7eda1092cea65198106d7b96b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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