homebrew-core/Formula/libdmtx.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

16 lines
436 B
Ruby

require 'formula'
class Libdmtx < Formula
homepage 'http://www.libdmtx.org'
url 'https://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