blob: 450a6d60950b2643efbe1df163567cf6b3dd11e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Lzop < Formula
homepage 'http://www.lzop.org/'
url 'http://www.lzop.org/download/lzop-1.03.tar.gz'
sha1 '4ee0b49b2a6b0a13572ddca5785ee48ef4c8f80f'
depends_on 'lzo'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|