homebrew-core/Formula/jpeg.rb
Nibbles McGurk 743310b99a jpeg: remove default flags
Jpeg 8c is the foundation of many libraries and applications.
It gets a minor checkup.  It had two configure flags listed in
the formula that were already the default. So those were removed.
No other changes were made, and the library and its dependents
do not need to be rebuilt.

Closes Homebrew/homebrew#7700.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-18 16:16:27 -05:00

14 lines
391 B
Ruby

require 'formula'
class Jpeg < Formula
url 'http://www.ijg.org/files/jpegsrc.v8c.tar.gz'
version '8c'
md5 'a2c10c04f396a9ce72894beb18b4e1f9'
homepage 'http://www.ijg.org'
def install
ENV.universal_binary # Builds universal libs. Default is static & shared.
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end