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

class Lzip <Formula
  url 'http://download.savannah.gnu.org/releases-noredirect/lzip/lzip-1.10.tar.gz'
  homepage 'http://www.nongnu.org/lzip/lzip.html'
  md5 '84879f20450a69a94e125a67f4724d12'

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