blob: 8bce747912e7685e918047249a6c1ac59866bace (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  | 
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.03.tar.gz'
  sha1 'e257ea75af8a25c825f84c2bd84bc2e497683b08'
  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
  |