aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lzip.rb
blob: b784cbf49fecd4e1e0ce6c1a07d3857c7a478466 (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