blob: ae54341409fad484e3aea2bb9eae324c22dc50ea (
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.8.tar.gz'
sha1 'c16b9caa207afdf36fc664ad0b2807ecc7a562fa'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|