2010-03-11 19:57:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tarsnap < Formula
|
2010-03-11 19:57:26 +00:00
|
|
|
homepage 'http://www.tarsnap.com/'
|
2012-02-22 17:20:30 +00:00
|
|
|
url 'https://www.tarsnap.com/download/tarsnap-autoconf-1.0.32.tgz'
|
|
|
|
sha256 '8b7c7de5277e6cac55040e0d0e0c8b0952aa77278f7e14f05f00d6aef46d265d'
|
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
|
|
|
|
|
|
|
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
|