aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libmicrohttpd.rb
blob: 08b3b52feeeb871538c815dc9ad23362e05f5415 (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.25.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.25.tar.gz'
  sha1 'da24fe9572f83e67959b0e32e15d261fcbf46bc1'

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