2010-03-11 19:57:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tarsnap < Formula
|
2011-02-21 14:35:19 +00:00
|
|
|
url 'https://www.tarsnap.com/download/tarsnap-autoconf-1.0.29.tgz'
|
2010-03-11 19:57:26 +00:00
|
|
|
homepage 'http://www.tarsnap.com/'
|
2011-02-21 14:35:19 +00:00
|
|
|
sha256 '747510459e4af0ebbb6e267c159aa019f9337d1e07bd9a94f1aa1498081b7598'
|
2010-03-11 19:57:26 +00:00
|
|
|
|
2010-07-24 04:34:02 +00:00
|
|
|
depends_on 'lzma' => :optional
|
2010-03-11 19:57:26 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-sse2"
|
2010-03-11 19:57:26 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|