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

class Libewf < Formula
  homepage 'http://code.google.com/p/libewf/'
  url 'https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20130416.tar.gz'
  sha1 'b455412299fd15e7a4f1be670d886f99350bdae4'

  # env :std

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