aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libmicrohttpd.rb
diff options
context:
space:
mode:
authorZack Hobson2010-01-11 16:10:19 -0800
committerDavid Höppner2010-01-31 18:31:31 +0100
commit4af2fe9826883d6eab2808624aa47059e772ab19 (patch)
tree4b3a301a86a2436b4ebf1583b8ec877d74f647d6 /Library/Formula/libmicrohttpd.rb
parent73d57a9b62a2a4ed96fbbd45a21416be3dc1c666 (diff)
downloadhomebrew-4af2fe9826883d6eab2808624aa47059e772ab19.tar.bz2
New formula: libmicrohttpd
Signed-off-by: David Höppner <0xffea@gmail.com>
Diffstat (limited to 'Library/Formula/libmicrohttpd.rb')
-rw-r--r--Library/Formula/libmicrohttpd.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libmicrohttpd.rb b/Library/Formula/libmicrohttpd.rb
new file mode 100644
index 000000000..8d71f5af2
--- /dev/null
+++ b/Library/Formula/libmicrohttpd.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Libmicrohttpd <Formula
+ url 'ftp://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.4.4.tar.gz'
+ homepage 'http://www.gnu.org/software/libmicrohttpd/'
+ md5 'bcd61ebb10286379f55c7db9c79e0465'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end