aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libewf.rb
blob: c39cd4ce449fa45c4f2bb4b06e0f40e1939c37d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Libewf < Formula
  homepage 'http://code.google.com/p/libewf/'
  url 'http://libewf.googlecode.com/files/libewf-20130105.tar.gz'
  sha1 '9d8ba42e6a111737093a782829b5f74ab44bece4'

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end