homebrew-core/Formula/phash.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

51 lines
1.6 KiB
Ruby

class Phash < Formula
desc "Perceptual hash library"
homepage "http://www.phash.org/"
url "http://phash.org/releases/pHash-0.9.6.tar.gz"
sha256 "3c8258a014f9c2491fb1153010984606805638a45d00498864968a9a30102935"
revision 1
bottle do
cellar :any
revision 1
sha256 "daf5e13548267562355eb4a08c8a51b90ea3b6ecafb33a1c12a68ebd999d1ee2" => :yosemite
sha256 "d2aa89a1102afe704c88fe0250cca0de618b264f819a2229daa31a5bfe6f7419" => :mavericks
sha256 "caba9909717b1286db3be662f975928ee470f9ebe5bdcd3ac9fc2955180be04b" => :mountain_lion
end
option "disable-image-hash", "Disable image hash"
option "disable-video-hash", "Disable video hash"
option "disable-audio-hash", "Disable audio hash"
depends_on "cimg" unless build.include?("disable-image-hash") && build.include?("disable-video-hash")
depends_on "ffmpeg" unless build.include? "disable-video-hash"
unless build.include? "disable-audio-hash"
depends_on "libsndfile"
depends_on "libsamplerate"
depends_on "mpg123"
end
fails_with :clang do
build 318
cause "configure: WARNING: CImg.h: present but cannot be compiled"
end
def install
inreplace "src/ph_fft.h", "/usr/include/complex.h", "#{MacOS.sdk_path}/usr/include/complex.h"
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--enable-shared
]
args << "--disable-image-hash" if build.include? "disable-image-hash"
args << "--disable-video-hash" if build.include? "disable-video-hash"
args << "--disable-audio-hash" if build.include? "disable-audio-hash"
system "./configure", *args
system "make", "install"
end
end