From c6eac7616c3356ebf8e2207152cd9687bffc4147 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Tue, 13 Nov 2012 21:42:12 +0100
Subject: [PATCH] distro: Add LZO.

* distro/packages/compression.scm (lzo): New variable.
---
 distro/packages/compression.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/distro/packages/compression.scm b/distro/packages/compression.scm
index 2fad81fb6a7..8eed5b601b5 100644
--- a/distro/packages/compression.scm
+++ b/distro/packages/compression.scm
@@ -171,3 +171,28 @@ (define-public xz
 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+")))
-- 
GitLab