all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] Add cabextract.
@ 2016-04-16 18:05 Danny Milosavljevic
  2016-04-17  9:32 ` Ricardo Wurmus
  2016-04-17 12:31 ` [PATCHv2] " Danny Milosavljevic
  0 siblings, 2 replies; 8+ messages in thread
From: Danny Milosavljevic @ 2016-04-16 18:05 UTC (permalink / raw)
  To: guix-devel

Hi,

this patch adds cabextract, an extractor for CAB files. (libmspack is already in, but cabextract isn't)

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

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 938d4b8..9343e85 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -688,3 +688,26 @@ a collection of smaller blocks which makes random access to the original data
 possible and can compress in parallel.  This is especially useful for large
 tarballs.")
     (license license:bsd-2)))
+
+(define-public cabextract
+ (package
+   (name "cabextract")
+   (version "1.6")
+   (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "http://cabextract.org.uk/cabextract-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1ysmmz25fjghq7mxb2anyyvr1ljxqxzi4piwjhk0sdamcnsn3rnf"))))
+    (build-system gnu-build-system)
+    (arguments '(#:configure-flags '("--with-external-libmspack")))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ))
+    (inputs
+     `(("libmspack" ,libmspack)))
+    (home-page "http://www.cabextract.org.uk/")
+    (synopsis "CAB Extractor")
+    (description "cabextract extracts files from CAB archives.")
+    (license (list license:gpl2 license:gpl3))))

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

end of thread, other threads:[~2016-04-17 17:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-16 18:05 [PATCH] Add cabextract Danny Milosavljevic
2016-04-17  9:32 ` Ricardo Wurmus
2016-04-17 10:06   ` Leo Famulari
2016-04-17 12:31 ` [PATCHv2] " Danny Milosavljevic
2016-04-17 13:28   ` John Darrington
2016-04-17 13:45     ` Danny Milosavljevic
2016-04-17 14:44       ` John Darrington
2016-04-17 17:30         ` [PATCH v3] " Danny Milosavljevic

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.