homebrew-core/Formula/jpeg-turbo.rb
2017-09-11 05:22:37 -07:00

50 lines
1.6 KiB
Ruby

class JpegTurbo < Formula
desc "JPEG image codec that aids compression and decompression"
homepage "https://www.libjpeg-turbo.org/"
url "https://downloads.sourceforge.net/project/libjpeg-turbo/1.5.2/libjpeg-turbo-1.5.2.tar.gz"
sha256 "9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528"
bottle do
cellar :any
sha256 "21f8159b00dadb55d54ac116fad05609c037232247de5a4a68cbecaf6370efa8" => :sierra
sha256 "467f1bf4bdc4b6cda9a9dde47eafe13270183c6c1d8dfa13d6149d1f1ae02ca8" => :el_capitan
end
head do
url "https://github.com/libjpeg-turbo/libjpeg-turbo.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
end
keg_only "libjpeg-turbo is not linked to prevent conflicts with the standard libjpeg"
option "without-test", "Skip build-time checks (Not Recommended)"
depends_on "libtool" => :build
depends_on "nasm" => :build
def install
cp Dir["#{Formula["libtool"].opt_share}/libtool/*/config.{guess,sub}"], buildpath
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--with-jpeg8
--mandir=#{man}
]
system "autoreconf", "-fvi" if build.head?
system "./configure", *args
system "make"
system "make", "test" if build.with? "test"
ENV.deparallelize # Stops a race condition error: file exists
system "make", "install"
end
test do
system "#{bin}/jpegtran", "-crop", "1x1",
"-transpose", "-perfect",
"-outfile", "out.jpg",
test_fixtures("test.jpg")
end
end