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