[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/10: gnu: Add perl-archive-extract.
From: |
Ricardo Wurmus |
Subject: |
02/10: gnu: Add perl-archive-extract. |
Date: |
Tue, 24 Oct 2017 12:38:43 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit b44ecca69146a3d4025cb51229ca86db201392be
Author: Petter <address@hidden>
Date: Tue Oct 24 18:22:12 2017 +0200
gnu: Add perl-archive-extract.
* gnu/packages/compression.scm (perl-archive-extract): New variable.
Signed-off-by: Ricardo Wurmus <address@hidden>
---
gnu/packages/compression.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index f3142d1..a2bf3a1 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -18,6 +18,7 @@
;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <address@hidden>
;;; Copyright © 2017 Theodoros Foradis <address@hidden>
;;; Copyright © 2017 Stefan Reichör <address@hidden>
+;;; Copyright © 2017 Petter <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1603,3 +1604,24 @@ extract files to standard out). As @command{atool}
invokes external programs
to handle the archives, not all commands may be supported for a certain type
of archives.")
(license license:gpl2+)))
+
+(define-public perl-archive-extract
+ (package
+ (name "perl-archive-extract")
+ (version "0.80")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
"mirror://cpan/authors/id/B/BI/BINGOS/Archive-Extract-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1x15j1q6w6z8hqyqgap0lz4qbq2174wfhksy1fdd653ccbaw5jr5"))))
+ (build-system perl-build-system)
+ (home-page "http://search.cpan.org/dist/Archive-Extract/")
+ (synopsis "Generic archive extracting mechanism")
+ (description "It allows you to extract any archive file of the type .tar,
+.tar.gz, .gz, .Z, tar.bz2, .tbz, .bz2, .zip, .xz,, .txz, .tar.xz or .lzma
+without having to worry how it does so, or use different interfaces for each
+type by using either Perl modules, or command-line tools on your system.")
+ (license license:perl-license)))
- branch master updated (6ee4fd2 -> 22473f6), Ricardo Wurmus, 2017/10/24
- 02/10: gnu: Add perl-archive-extract.,
Ricardo Wurmus <=
- 06/10: gnu: Add perl-term-size-perl., Ricardo Wurmus, 2017/10/24
- 05/10: gnu: Add perl-devel-hide., Ricardo Wurmus, 2017/10/24
- 08/10: gnu: Add perl-test-taint., Ricardo Wurmus, 2017/10/24
- 04/10: gnu: Add perl-sort-naturally., Ricardo Wurmus, 2017/10/24
- 03/10: gnu: Add perl-proc-invokeeditor., Ricardo Wurmus, 2017/10/24
- 09/10: gnu: Add perl-type-tiny-xs., Ricardo Wurmus, 2017/10/24
- 07/10: gnu: Add perl-term-size-any., Ricardo Wurmus, 2017/10/24
- 10/10: gnu: Add perl-types-path-tiny., Ricardo Wurmus, 2017/10/24
- 01/10: gnu: Add perl-gnupg-interface., Ricardo Wurmus, 2017/10/24