6679e1115a
Tarsnap is a secure online backup service which offers cryptographically secure backups with a flexible client which is easy on the resources. - strong crypto for encryption and validation on local machine. - tar like interface direct to remote storage. - savings on bandwidth and storage by only sending changed chuncks. Signed-off-by: Berk D. Demir <bdd@mindcast.org> Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
424 B
Ruby
14 lines
424 B
Ruby
require 'formula'
|
|
|
|
class Tarsnap <Formula
|
|
url 'https://www.tarsnap.com/download/tarsnap-autoconf-1.0.26.tgz'
|
|
homepage 'http://www.tarsnap.com/'
|
|
sha256 '426c932b7270ddd9f123d04c86bfcb5bd992ad156931a135ed38664638193fa5'
|
|
|
|
depends_on 'lzma' => :optional
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--enable-sse2"
|
|
system "make install"
|
|
end
|
|
end
|