2010-08-09 22:06:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Jansson < Formula
|
2010-08-09 22:06:43 +00:00
|
|
|
homepage 'http://www.digip.org/jansson/'
|
2012-06-14 09:15:16 +00:00
|
|
|
url 'http://www.digip.org/jansson/releases/jansson-2.3.1.tar.bz2'
|
|
|
|
sha1 'af7497d930423088fa6d0699d84740fffa0c98df'
|
2012-04-09 18:39:23 +00:00
|
|
|
|
|
|
|
def options
|
|
|
|
[["--universal", "Build a universal binary."]]
|
|
|
|
end
|
2010-08-09 22:06:43 +00:00
|
|
|
|
|
|
|
def install
|
2012-04-09 18:39:23 +00:00
|
|
|
ENV.universal_binary if ARGV.build_universal?
|
2010-08-09 22:06:43 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|