aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libewf.rb
blob: 0b1d70a3aa446293f8782ef109cfc6878978b875 (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-20131230.tar.gz'
  sha1 '2926fc30c211711d9b3091bfc6c21ad896ff2c34'

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