31d6cd658e
Closes Homebrew/homebrew#18789.
17 lines
419 B
Ruby
17 lines
419 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 :automake
|
|
depends_on 'fcgi'
|
|
|
|
def install
|
|
system "autoreconf", "-i"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|