summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-11-13 21:42:12 +0100
committerLudovic Courtès <ludo@gnu.org>2012-11-13 21:42:12 +0100
commitc6eac7616c3356ebf8e2207152cd9687bffc4147 (patch)
treeae676bdeea900c62ced5e921542dbecaf5716e4a
parent92b8d1ea8b2dab6df9d76b2bf8d78e33fec197f1 (diff)
downloadpatches-c6eac7616c3356ebf8e2207152cd9687bffc4147.tar
patches-c6eac7616c3356ebf8e2207152cd9687bffc4147.tar.gz
distro: Add LZO.
* distro/packages/compression.scm (lzo): New variable.
-rw-r--r--distro/packages/compression.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/distro/packages/compression.scm b/distro/packages/compression.scm
index 2fad81fb6a..8eed5b601b 100644
--- a/distro/packages/compression.scm
+++ b/distro/packages/compression.scm
@@ -171,3 +171,28 @@ container format. With typical files, XZ Utils create 30 % smaller output
than gzip and 15 % smaller output than bzip2.")
(license '("GPLv2+" "LGPLv2.1+")) ; bits of both
(home-page "http://tukaani.org/xz/")))
+
+(define-public lzo
+ (package
+ (name "lzo")
+ (version "2.06")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://www.oberhumer.com/opensource/lzo/download/lzo-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0wryshs446s7cclrbjykyj766znhcpnr7s3cxy33ybfn6vwfcygz"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.oberhumer.com/opensource/lzo")
+ (synopsis
+ "A data compresion library suitable for real-time data de-/compression")
+ (description
+ "LZO is a data compression library which is suitable for data
+de-/compression in real-time. This means it favours speed over
+compression ratio.
+
+LZO is written in ANSI C. Both the source code and the compressed data
+format are designed to be portable across platforms.")
+ (license "GPLv2+")))