aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorKane Dou2012-04-26 00:11:41 +0800
committerAdam Vandenberg2012-08-10 15:32:46 -0700
commit97418e8e1203e8da9e39417070cc6302a20d31bc (patch)
treefbdccbfb5706d2a074049e370c6ae729c7560280 /Library/Formula
parent31196c1591272c2f1550fa9aeb3628a4e9e602df (diff)
downloadhomebrew-97418e8e1203e8da9e39417070cc6302a20d31bc.tar.bz2
fcgiwrap 1.0.3
Closes #11897. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fcgiwrap.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/fcgiwrap.rb b/Library/Formula/fcgiwrap.rb
new file mode 100644
index 000000000..acb58f942
--- /dev/null
+++ b/Library/Formula/fcgiwrap.rb
@@ -0,0 +1,19 @@
+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'
+
+ # Do not strip binaries, or else it fails to run.
+ skip_clean :all
+
+ def install
+ system "autoreconf", "-i"
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end