homebrew-core/Formula/exiftool.rb
Brett Koonce 1b1bda7c52 ExifTool 9.41
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-11-19 13:03:12 -06:00

30 lines
799 B
Ruby

require 'formula'
class Exiftool < Formula
homepage 'http://www.sno.phy.queensu.ca/~phil/exiftool/index.html'
url 'http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-9.41.tar.gz'
sha1 '39f5cd51eafa1b1881cc0193a38bb31dda132b59'
def install
system "perl", "Makefile.PL"
system "make", "test"
# Install privately to the Cellar
libexec.install "exiftool", "lib"
# Link the executable script into "bin"
(bin + 'exiftool').write <<-EOBIN
#!/bin/bash
which_exiftool=`which $0`
dirname_exiftool=$(dirname $which_exiftool)
readlink_exiftool=$(readlink $which_exiftool)
dirname_unlinked_exiftool=$(dirname $dirname_exiftool/$readlink_exiftool)
$dirname_unlinked_exiftool/../libexec/exiftool "$@"
EOBIN
end
def test
system "#{libexec}/exiftool"
end
end