all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] Add libtar.
@ 2015-06-27  9:45 Ricardo Wurmus
  2015-06-28  9:16 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Ricardo Wurmus @ 2015-06-27  9:45 UTC (permalink / raw)
  To: Guix-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-gnu-Add-libtar.patch --]
[-- Type: text/x-patch, Size: 1468 bytes --]

From 0039b2d36f77d19c92e07e02c7b3e829c485f355 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Sat, 27 Jun 2015 11:45:01 +0200
Subject: [PATCH] gnu: Add libtar.

* gnu/packages/compression.scm (libtar): New variable.
---
 gnu/packages/compression.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 1cf84a3..3935dbe 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -97,6 +97,27 @@ in compression.")
 utility.  Instead of being written in Java, FastJar is written in C.")
    (license license:gpl2+)))
 
+(define-public libtar
+  (package
+   (name "libtar")
+   (version "1.2.11")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append
+                  "ftp://ftp.feep.net/pub/software/libtar/libtar-"
+                  version ".tar.gz"))
+            (sha256
+             (base32
+              "1f3vx1wa69a6c5y0z0aakd81gygirdcm0vimazg433q8nyvfybja"))))
+   (build-system gnu-build-system)
+   (arguments `(#:tests? #f)) ;no "check" target
+   (synopsis "C library for manipulating POSIX tar files")
+   (description
+    "libtar is a C library for manipulating POSIX tar files.  It handles
+adding and extracting files to/from a tar archive.")
+   (home-page "http://www.feep.net/libtar/")
+   (license license:bsd-3)))
+
 (define-public gzip
   (package
    (name "gzip")
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Add libtar.
  2015-06-27  9:45 [PATCH] Add libtar Ricardo Wurmus
@ 2015-06-28  9:16 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2015-06-28  9:16 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> skribis:

> From 0039b2d36f77d19c92e07e02c7b3e829c485f355 Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <rekado@elephly.net>
> Date: Sat, 27 Jun 2015 11:45:01 +0200
> Subject: [PATCH] gnu: Add libtar.
>
> * gnu/packages/compression.scm (libtar): New variable.

LGTM, thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-06-28  9:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-27  9:45 [PATCH] Add libtar Ricardo Wurmus
2015-06-28  9:16 ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.