2010-03-11 19:57:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Tarsnap <Formula
|
2010-06-28 05:57:31 +00:00
|
|
|
url 'https://www.tarsnap.com/download/tarsnap-autoconf-1.0.27.tgz'
|
2010-03-11 19:57:26 +00:00
|
|
|
homepage 'http://www.tarsnap.com/'
|
2010-06-28 05:57:31 +00:00
|
|
|
sha256 'e26dc7c2aa64c17d8063bc61462d1a0f546b56e33b41fbd2fd6925e506c6914f'
|
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
|