9c098cb9b6
Closes Homebrew/homebrew#27218.
18 lines
538 B
Ruby
18 lines
538 B
Ruby
require 'formula'
|
|
|
|
class Iphotoexport < Formula
|
|
homepage 'http://code.google.com/p/iphotoexport/'
|
|
url 'https://iphotoexport.googlecode.com/files/iphotoexport-1.6.4.zip'
|
|
sha1 '50fa0916cf9689efdfd33cd4680424234b4e9023'
|
|
|
|
depends_on 'exiftool'
|
|
|
|
def install
|
|
unzip_dir = "#{name}-#{version}"
|
|
# Change hardcoded exiftool path
|
|
inreplace "#{unzip_dir}/tilutil/exiftool.py", "/usr/bin/exiftool", "exiftool"
|
|
|
|
prefix.install Dir["#{unzip_dir}/*"]
|
|
bin.install_symlink prefix+'iphotoexport.py' => 'iphotoexport'
|
|
end
|
|
end
|