homebrew-core/Formula/libconfig.rb
2014-10-20 08:05:56 +01:00

23 lines
608 B
Ruby

require 'formula'
class Libconfig < Formula
homepage 'http://www.hyperrealm.com/libconfig/'
url 'http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz'
sha1 'b7a3c307dfb388e57d9a35c7f13f6232116930ec'
bottle do
cellar :any
revision 1
sha1 "28fca89d671c8ebf4f97ac7a6706675e8b957b2f" => :yosemite
sha1 "21f6d02c17ab809a63b076dec69d0bc5dbc8f605" => :mavericks
end
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end