aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libewf.rb
blob: ebc961e174a756714792223393f5bb8c6829e02e (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-20140608.tar.gz"
  sha1 "c17384a3d2c1d63bd5b1aaa2aead6ee3c82a2368"

  bottle do
    cellar :any
    revision 1
    sha1 "402eaa3c798f989cdaaea037aa4042813f27a19c" => :yosemite
    sha1 "efc08c4c055d93a533e833fa99339d29bd12aee2" => :mavericks
  end

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