aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/exiv2.rb
diff options
context:
space:
mode:
authorAleksandar Topuzovic2010-02-15 23:01:29 +0100
committerAdam Vandenberg2010-02-18 13:06:08 -0800
commitf841047db9b62a4c843240567dacfb36d8ced2f1 (patch)
tree9f999894e53fa60ab0a4f3bc12392f46e338fee8 /Library/Formula/exiv2.rb
parentec554f86e03bbd256707cc10cffbd23d375fa042 (diff)
downloadhomebrew-f841047db9b62a4c843240567dacfb36d8ced2f1.tar.bz2
New formula exiv2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/exiv2.rb')
-rw-r--r--Library/Formula/exiv2.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/exiv2.rb b/Library/Formula/exiv2.rb
new file mode 100644
index 000000000..bac1e232d
--- /dev/null
+++ b/Library/Formula/exiv2.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Exiv2 <Formula
+ url 'http://www.exiv2.org/exiv2-0.19.tar.gz'
+ homepage 'http://www.exiv2.org'
+ md5 'f52fb75a2cb7512f1484deab76473e13'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end