Add Formula For libdmtx
open source software for reading and writing Data Matrix 2D barcodes Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
83f79f8ef5
commit
c34a1d07e6
1 changed files with 16 additions and 0 deletions
16
Formula/libdmtx.rb
Normal file
16
Formula/libdmtx.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'formula'
|
||||
|
||||
class Libdmtx <Formula
|
||||
url 'http://transact.dl.sourceforge.net/project/libdmtx/libdmtx/0.7.2/libdmtx-0.7.2.tar.bz2'
|
||||
homepage 'http://www.libdmtx.org'
|
||||
md5 '0684cf3857591e777b57248d652444ae'
|
||||
|
||||
depends_on 'pkg-config'
|
||||
depends_on 'imagemagick'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
||||
system "make"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue