diff options
| author | Berk D. Demir | 2010-03-11 11:57:26 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-26 09:42:06 -0700 |
| commit | 940cc3890954639b971df17a9ebad70cd8915cf3 (patch) | |
| tree | 1fac6078554f35ad1e73245cb5307a2c2dfd4570 /Library | |
| parent | 1bd71597919f6e250b8709e113e24871a3d6a9ba (diff) | |
| download | homebrew-940cc3890954639b971df17a9ebad70cd8915cf3.tar.bz2 | |
New Formula tarsnap
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>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/tarsnap.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/tarsnap.rb b/Library/Formula/tarsnap.rb new file mode 100644 index 000000000..7b84c3dc3 --- /dev/null +++ b/Library/Formula/tarsnap.rb @@ -0,0 +1,14 @@ +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 |
