2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-28 15:56:15 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Jpeg < Formula
|
2010-03-22 18:10:33 +00:00
|
|
|
homepage 'http://www.ijg.org'
|
2012-09-04 03:37:41 +00:00
|
|
|
url 'http://www.ijg.org/files/jpegsrc.v8d.tar.gz'
|
|
|
|
sha1 'f080b2fffc7581f7d19b968092ba9ebc234556ff'
|
2010-06-13 21:53:25 +00:00
|
|
|
|
2012-08-11 15:02:29 +00:00
|
|
|
bottle do
|
2013-09-10 20:56:57 +00:00
|
|
|
cellar :any
|
2013-10-28 11:11:14 +00:00
|
|
|
sha1 '1f61eefc3d5dec2028c80afec203219b29a9d28d' => :mavericks
|
|
|
|
sha1 '403549b7b3b3e34a58e24b8e08bb3aa7e6dc3d6e' => :mountain_lion
|
|
|
|
sha1 '29648a413e64c64758619fc6c5bff737b4d2e1de' => :lion
|
2012-08-11 15:02:29 +00:00
|
|
|
end
|
|
|
|
|
2013-01-31 19:06:58 +00:00
|
|
|
option :universal
|
|
|
|
|
2009-06-28 15:56:15 +00:00
|
|
|
def install
|
2013-01-31 19:06:58 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-07-23 12:03:15 +00:00
|
|
|
system "make install"
|
2009-06-28 15:56:15 +00:00
|
|
|
end
|
2010-06-13 21:53:25 +00:00
|
|
|
end
|