aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libewf.rb
blob: 556808ff17df69c1ef6a056878e4ea6b79af8119 (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 'https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20130416.tar.gz'
  sha1 'b455412299fd15e7a4f1be670d886f99350bdae4'

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