aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tarsnap.rb
blob: 2675bdba0a721a6792575cb4d909d89ee7066a45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Tarsnap <Formula
  url 'https://www.tarsnap.com/download/tarsnap-autoconf-1.0.27.tgz'
  homepage 'http://www.tarsnap.com/'
  sha256 'e26dc7c2aa64c17d8063bc61462d1a0f546b56e33b41fbd2fd6925e506c6914f'

  depends_on 'lzma' => :optional

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-sse2"
    system "make install"
  end
end