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-08-10 21:10:25 +00:00
|
|
|
url 'https://www.tarsnap.com/download/tarsnap-autoconf-1.0.33.tgz'
|
|
|
|
sha256 '0c0d825a8c9695fc8d44c5d8c3cd17299c248377c9c7b91fdb49d73e54ae0b7d'
|
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
|