diff options
author | Marius Bakke <[email protected]> | 2020-03-14 12:57:21 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2020-03-14 12:57:21 +0100 |
commit | aebba13c0bef5a58697f1a9fe8337967cc01300f (patch) | |
tree | 12156f0f2312df613cc554a220a6fd75450aa508 /gnu/packages/compression.scm | |
parent | 747953c430039055140e29546ff50641da1ab440 (diff) | |
parent | bb4674b43fa413a6d41694b2093c3b00d11eea47 (diff) |
Merge branch 'staging'
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 33f9380236..2e1fe04dde 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -13,7 +13,7 @@ ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2016 David Craven <[email protected]> ;;; Copyright © 2016, 2019 Kei Kebreau <[email protected]> -;;; Copyright © 2016, 2018, 2019 Marius Bakke <[email protected]> +;;; Copyright © 2016, 2018, 2019, 2020 Marius Bakke <[email protected]> ;;; Copyright © 2017 ng0 <[email protected]> ;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <[email protected]> ;;; Copyright © 2017 Theodoros Foradis <[email protected]> @@ -766,7 +766,12 @@ decompression of some loosely related file formats used by Microsoft.") (substitute* "tests/Makefile" (("^test: (.*) test-install" _ targets) (string-append "test: " targets))) - #t))))) + #t)) + (add-after 'install 'delete-static-library + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (delete-file (string-append out "/lib/liblz4.a")) + #t)))))) (home-page "https://www.lz4.org") (synopsis "Compression algorithm focused on speed") (description "LZ4 is a lossless compression algorithm, providing |