aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authoreregon2010-10-24 17:08:36 +0200
committerAdam Vandenberg2010-10-24 21:04:53 -0700
commit34c99b0cc86fc2b84feee1aa39de46b04fac0fbc (patch)
tree5aa9bf5a90564ab34ccbbba31bbe8983b307f3c0 /Library/Formula
parent89438aecfe89e3cd9c636d06c8de019acc8d6a15 (diff)
downloadhomebrew-34c99b0cc86fc2b84feee1aa39de46b04fac0fbc.tar.bz2
New formula: exiftags
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/exiftags.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/exiftags.rb b/Library/Formula/exiftags.rb
new file mode 100644
index 000000000..0a264a7fd
--- /dev/null
+++ b/Library/Formula/exiftags.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Exiftags <Formula
+ url 'http://johnst.org/sw/exiftags/exiftags-1.01.tar.gz'
+ homepage 'http://johnst.org/sw/exiftags'
+ md5 '9d5bce968fdde2dc24ba49c0024dc0cc'
+
+ def install
+ system 'make'
+ bin.install %w[exiftags exifcom exiftime]
+ man1.install %w[exiftags.1 exifcom.1 exiftime.1]
+ end
+end