2010-01-12 00:10:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libmicrohttpd < Formula
|
2011-09-29 01:55:37 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/libmicrohttpd/libmicrohttpd-0.9.15.tar.gz'
|
2011-11-30 18:56:07 +00:00
|
|
|
mirror 'http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.15.tar.gz'
|
2010-01-12 00:10:19 +00:00
|
|
|
homepage 'http://www.gnu.org/software/libmicrohttpd/'
|
2011-09-29 01:55:37 +00:00
|
|
|
md5 'fb726a48095cc6b25c245dbc27ea76b0'
|
2010-01-12 00:10:19 +00:00
|
|
|
|
|
|
|
def install
|
2011-09-11 05:29:23 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
2010-01-12 00:10:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|