blob: 180d3740002ae84747a48f5317bab92627b02cc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Lzlib <Formula
url 'http://download.savannah.gnu.org/releases/lzip/lzlib-1.0.tar.gz'
homepage 'http://www.nongnu.org/lzip/lzlib.html'
md5 '39bfe00964a03be95d51ebbe9104b337'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|