aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libmicrohttpd.rb
blob: be94ac1a7c31dee842805429915bf741cfb8e170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Libmicrohttpd < Formula
  homepage 'http://www.gnu.org/software/libmicrohttpd/'
  url 'http://ftpmirror.gnu.org/libmicrohttpd/libmicrohttpd-0.9.34.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.34.tar.gz'
  sha1 '1122f26fa278556630aaef40a500a9be19bdcfc9'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
    system "make install"
  end
end