2012-04-25 16:11:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Fcgiwrap < Formula
|
|
|
|
homepage 'http://nginx.localdomain.pl/wiki/FcgiWrap'
|
2013-07-16 04:42:30 +00:00
|
|
|
url 'https://github.com/gnosek/fcgiwrap/archive/1.1.0.tar.gz'
|
|
|
|
sha1 '8e7b9140b3d96f4635352bb967715477b35caf84'
|
2012-04-25 16:11:41 +00:00
|
|
|
|
|
|
|
depends_on :autoconf
|
2013-03-28 20:24:58 +00:00
|
|
|
depends_on :automake
|
2012-04-25 16:11:41 +00:00
|
|
|
depends_on 'fcgi'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "autoreconf", "-i"
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|