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

class Libconfig < Formula
  url 'http://www.hyperrealm.com/libconfig/libconfig-1.4.5.tar.gz'
  homepage 'http://www.hyperrealm.com/libconfig/'
  md5 'f2219e1b2501e7296a7d3e971c63666a'

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