libjpeg-turbo 1.2.0
libjpeg-turbo is a derivative of libjpeg that uses SIMD instructions (MMX, SSE2, NEON) to accelerate baseline JPEG compression and decompression on x86, x86-64, and ARM systems. Closes Homebrew/homebrew#11894. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
0e9c71bc32
commit
28f115c0a6
1 changed files with 25 additions and 0 deletions
25
Formula/jpeg-turbo.rb
Normal file
25
Formula/jpeg-turbo.rb
Normal file
|
@ -0,0 +1,25 @@
|
|||
require 'formula'
|
||||
|
||||
class JpegTurbo < Formula
|
||||
homepage 'http://www.libjpeg-turbo.org/'
|
||||
url 'http://downloads.sourceforge.net/project/libjpeg-turbo/1.2.0/libjpeg-turbo-1.2.0.tar.gz'
|
||||
sha1 '4ab00afc9a8d54cd2e7a67aacb9c49e01a8bccac'
|
||||
|
||||
depends_on 'nasm' => :build if MacOS.prefer_64_bit?
|
||||
|
||||
keg_only "libjpeg-turbo is not linked to prevent conflicts with the standard libjpeg."
|
||||
|
||||
def install
|
||||
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
|
||||
args << "--host=x86_64-apple-darwin" if MacOS.prefer_64_bit?
|
||||
system "./configure", *args
|
||||
system "make install"
|
||||
end
|
||||
|
||||
def test
|
||||
mktemp do
|
||||
system "#{bin}/jpegtran -crop 500x500+200+500 -transpose -perfect -outfile test.jpg /System/Library/CoreServices/DefaultDesktop.jpg"
|
||||
system "/usr/bin/qlmanage", "-p", "test.jpg"
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue