02016a89ec
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
361 B
Ruby
13 lines
361 B
Ruby
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'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|