2010-01-12 00:10:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libmicrohttpd < Formula
|
2010-01-12 00:10:19 +00:00
|
|
|
homepage 'http://www.gnu.org/software/libmicrohttpd/'
|
2013-04-01 02:44:03 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/libmicrohttpd/libmicrohttpd-0.9.26.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.26.tar.gz'
|
|
|
|
sha1 'b6869fa5274d846b6325f205c023d7e2bd31f7f5'
|
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
|