aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCyril Scetbon2012-11-09 15:29:22 +0100
committerAdam Vandenberg2012-12-16 23:02:33 -0800
commitd0f5937875a5de166ffb1dd3f9a82d4615d2d5d5 (patch)
tree2ebdc57c7575c8bf1d6fefb781dfaf23fd86d843 /Library
parentecd40eee5ce798259783aad8d51428e63ab798d7 (diff)
downloadhomebrew-d0f5937875a5de166ffb1dd3f9a82d4615d2d5d5.tar.bz2
dmtx-utils 0.7.4
Closes #15940. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/dmtx-utils.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/dmtx-utils.rb b/Library/Formula/dmtx-utils.rb
new file mode 100644
index 000000000..9bfb0ef9f
--- /dev/null
+++ b/Library/Formula/dmtx-utils.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class DmtxUtils < Formula
+ homepage 'http://www.libdmtx.org'
+ url 'http://downloads.sourceforge.net/project/libdmtx/libdmtx/0.7.4/dmtx-utils-0.7.4.zip'
+ sha1 '9c50506b420ed646e1554286de4daf7e9218f105'
+
+ depends_on 'libdmtx'
+
+ def install
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end