blob: 9bfb0ef9f6e6bb2258d050125fd0272d59518502 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|