aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libewf.rb
blob: e76d4fdad6e2fbb67c36fd4b5407edd1a3986a5b (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 'http://libewf.googlecode.com/files/libewf-20121209.tar.gz'
  sha1 '98870b307a6028788c76e572772965f15a84415a'

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