homebrew-core/Formula/libdmtx.rb
nibbles 2bits ac77eb6e4f libdmtx 0.7.4
Upgrade libdmtx to version 0.7.4.  Tested on ML with XCode-4.4.1.

Closes Homebrew/homebrew#14052.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-08 21:06:52 -07:00

16 lines
435 B
Ruby

require 'formula'
class Libdmtx < Formula
homepage 'http://www.libdmtx.org'
url 'http://downloads.sourceforge.net/project/libdmtx/libdmtx/0.7.4/libdmtx-0.7.4.tar.bz2'
sha1 '016282df12c4046338b9ff73f3d8b39f023bae16'
depends_on 'pkg-config' => :build
depends_on 'imagemagick'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end