guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 4/4] gnu: Add btar.


From: Eric Bavier
Subject: [PATCH 4/4] gnu: Add btar.
Date: Thu, 29 May 2014 16:40:43 -0500
User-agent: mu4e 0.9.9.5; emacs 23.3.1

>From 393b8dc14938e0b60ad05ef336afea9f6187f27e Mon Sep 17 00:00:00 2001
From: Eric Bavier <address@hidden>
Date: Thu, 29 May 2014 16:37:28 -0500
Subject: [PATCH 4/4] gnu: Add btar.

* gnu/packages/backup.scm (btar): New variable.
---
 gnu/packages/backup.scm |   32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index 7c8f0ea..64ed7c3 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -152,3 +152,35 @@ Rdup itself does not backup anything, it only print a list 
of absolute
 filenames to standard output.  Auxiliary scripts are needed that act on this
 list and implement the backup strategy.")
     (license gpl3+)))
+
+(define-public btar
+  (package
+    (name "btar")
+    (version "1.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://vicerveza.homeunix.net/~viric/soft/btar/";
+                           "btar-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0miklk4bqblpyzh1bni4x6lqn88fa8fjn15x1k1n8bxkx60nlymd"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("librsync" ,librsync)))
+    (arguments
+     `(#:make-flags `(,(string-append "PREFIX=" (assoc-ref %outputs "out"))
+                      "CC=gcc")
+       #:tests? #f                      ;test input not distributed
+       #:phases
+       (alist-delete
+        'configure                      ;no configure phase
+        %standard-phases)))
+    (home-page "http://viric.name/cgi-bin/btar/doc/trunk/doc/home.wiki";)
+    (synopsis "Block Tar")
+    (description
+     "Btar is a tar-compatible archiver which allows arbitrary compression and
+ciphering, redundancy, differential backup, indexed extraction, multicore
+compression, input and output serialisation, and tolerance to partial archive
+errors.")
+    (license gpl3+)))
-- 
1.7.9.5

-- 
Eric Bavier

reply via email to

[Prev in Thread] Current Thread [Next in Thread]