homebrew-core/Formula/jpeg.rb

15 lines
400 B
Ruby
Raw Normal View History

require 'formula'
2009-06-28 15:56:15 +00:00
2011-03-10 05:11:03 +00:00
class Jpeg < Formula
url 'http://www.ijg.org/files/jpegsrc.v8d.tar.gz'
sha1 'f080b2fffc7581f7d19b968092ba9ebc234556ff'
2010-03-22 18:10:33 +00:00
homepage 'http://www.ijg.org'
version '8d'
2009-06-28 15:56:15 +00:00
def install
ENV.universal_binary # Builds universal libs. Default is static & shared.
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
2009-07-23 12:03:15 +00:00
system "make install"
2009-06-28 15:56:15 +00:00
end
end