aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libewf.rb
blob: af43c782824a843adc4313eec2426c2928013fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

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

  bottle do
    cellar :any
    sha1 "3af34e429a24ced715c1563ba62c28dfd5a6201e" => :mavericks
    sha1 "526b99662ca1a873b0a44e56cf2b88f4d0d1744b" => :mountain_lion
    sha1 "b7de02361dfd59585f352ff74da02a9008d06884" => :lion
  end

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