[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#30570] [PATCH 13/16] gnu: Add google-brotli.
From: |
Ludovic Courtès |
Subject: |
[bug#30570] [PATCH 13/16] gnu: Add google-brotli. |
Date: |
Sat, 03 Mar 2018 22:47:49 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Leo Famulari <address@hidden> skribis:
> * gnu/packages/compression.scm (google-brotli): New variable.
[...]
> + (add-after 'install 'rename-static-libraries
> + ;; The build tools put a 'static' suffix on the static libraries,
> but
> + ;; other applications don't know how to find these.
> + (let ((lib (string-append (assoc-ref %outputs "out") "/lib/")))
> + (lambda _
Rather: (lambda (#:key outputs #:allow-other-keys)
(let ((lib (string-append (assoc-ref outputs "out") "/lib/")))
...))
> + (home-page "https://github.com/google/brotli")
> + (synopsis "General-purpose lossless compression")
> + (description "This package provides the reference implementation of
> Brotli,
> +a generic-purpose lossless compression algorithm that compresses data using a
> +combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd
> +order context modeling, with a compression ratio comparable to the best
> +currently available general-purpose compression methods. It is similar in
> speed
^
Missing space. :-)
Otherwise LGTM.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#30570] [PATCH 13/16] gnu: Add google-brotli.,
Ludovic Courtès <=