8001387923
ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in image, audio and video files. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Install into the Cellar
19 lines
497 B
Ruby
19 lines
497 B
Ruby
require 'formula'
|
|
|
|
class Exiftool <Formula
|
|
url 'http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-8.18.tar.gz'
|
|
homepage 'http://www.sno.phy.queensu.ca/~phil/exiftool/index.html'
|
|
md5 '549607a165499db04bc69019119099f8'
|
|
|
|
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.mkpath
|
|
ln_s libexec+"exiftool", bin
|
|
end
|
|
end
|