2010-04-30 21:09:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Iphotoexport < Formula
|
2010-04-30 21:09:26 +00:00
|
|
|
homepage 'http://code.google.com/p/iphotoexport/'
|
2014-03-05 07:22:08 +00:00
|
|
|
url 'https://iphotoexport.googlecode.com/files/iphotoexport-1.6.4.zip'
|
2010-04-30 21:09:26 +00:00
|
|
|
sha1 '50fa0916cf9689efdfd33cd4680424234b4e9023'
|
|
|
|
|
|
|
|
depends_on 'exiftool'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-04-30 21:09:26 +00:00
|
|
|
def install
|
2013-03-25 02:15:46 +00:00
|
|
|
unzip_dir = "#{name}-#{version}"
|
2010-04-30 21:09:26 +00:00
|
|
|
# Change hardcoded exiftool path
|
|
|
|
inreplace "#{unzip_dir}/tilutil/exiftool.py", "/usr/bin/exiftool", "exiftool"
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2013-03-25 02:15:46 +00:00
|
|
|
prefix.install Dir["#{unzip_dir}/*"]
|
2012-02-12 22:17:47 +00:00
|
|
|
bin.install_symlink prefix+'iphotoexport.py' => 'iphotoexport'
|
2010-04-30 21:09:26 +00:00
|
|
|
end
|
|
|
|
end
|