blob: be7d95e341ae6460cbe6736f9fe0ebd69ffd8e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|