diff options
| -rw-r--r-- | Library/Formula/exiftags.rb | 13 |
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 |
