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