homebrew-core/Formula/fcgiwrap.rb
Jack Nagel 0638c727c8 fcgiwrap: remove skip_clean :all
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-09-13 12:55:41 -05:00

16 lines
396 B
Ruby

require 'formula'
class Fcgiwrap < Formula
homepage 'http://nginx.localdomain.pl/wiki/FcgiWrap'
url 'https://github.com/downloads/gnosek/fcgiwrap/fcgiwrap-1.0.3.tar.gz'
sha1 'f62722efd637aea8ce4e6325c85614cfe2345d8d'
depends_on :autoconf
depends_on 'fcgi'
def install
system "autoreconf", "-i"
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end