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

class Lzip <Formula
  url 'http://mirrors.igsobe.com/nongnu/lzip/lzip-1.9.tar.gz'
  homepage 'http://www.nongnu.org/lzip/lzip.html'
  md5 '9e1d7f4db5b953e9f75b8500ebe0d4c0'

  def install
    system "./configure", "--prefix=#{prefix}", "CXX=#{ENV.cxx}"
    system "make check"
    system "make install"
  end
end