diff options
| author | Adam | 2010-05-10 20:08:05 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-10 20:00:15 -0700 |
| commit | 7a1ac6fbbd944c8226d2abac57a2c0e0ec26aa05 (patch) | |
| tree | a7cbf358c82b7d545a50115fab3bdc5f66a21bf3 /Library | |
| parent | 13f744468f300b248c52f957a912489a98c269d5 (diff) | |
| download | homebrew-7a1ac6fbbd944c8226d2abac57a2c0e0ec26aa05.tar.bz2 | |
Add Formula For libdmtx
open source software for reading and writing Data Matrix 2D barcodes
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libdmtx.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libdmtx.rb b/Library/Formula/libdmtx.rb new file mode 100644 index 000000000..030c33cde --- /dev/null +++ b/Library/Formula/libdmtx.rb @@ -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 |
