2010-03-11 19:57:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tarsnap < Formula
|
2011-11-20 01:03:09 +00:00
|
|
|
url 'https://www.tarsnap.com/download/tarsnap-autoconf-1.0.31.tgz'
|
2010-03-11 19:57:26 +00:00
|
|
|
homepage 'http://www.tarsnap.com/'
|
2011-11-20 01:03:09 +00:00
|
|
|
sha256 '3b461e1e76b92c1538a6322d8dbaa8e5285dae2029b4470357cb57e321625d95'
|
2010-03-11 19:57:26 +00:00
|
|
|
|
2011-08-28 00:49:25 +00:00
|
|
|
depends_on 'xz' => :optional
|
2010-03-11 19:57:26 +00:00
|
|
|
|
2011-08-25 09:25:09 +00:00
|
|
|
fails_with_llvm "Compilation hangs."
|
|
|
|
|
2010-03-11 19:57:26 +00:00
|
|
|
def install
|
2011-05-02 16:36:35 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2011-08-25 09:25:09 +00:00
|
|
|
"--enable-sse2",
|
2011-06-06 13:01:48 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--sysconfdir=#{etc}"
|
2010-03-11 19:57:26 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|