[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27120: [PATCH] gnu: graphicsmagick: Remove bundled libraries from so
From: |
Ludovic Courtès |
Subject: |
bug#27120: [PATCH] gnu: graphicsmagick: Remove bundled libraries from source checkout. |
Date: |
Tue, 30 May 2017 17:08:48 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
Leo Famulari <address@hidden> skribis:
> Fixes <https://bugs.gnu.org/27120>.
>
> * gnu/packages/imagemagick.scm (graphicsmagick)[source]: Add a snippet
> to delete bundled libraries.
> [version]: Bump the package revision counter to 3.
That was fast!
> + (snippet
> + '(begin
> + ;; Remove bundled software. This reduces the size of the
> + ;; build source checkout from 177 MiB to 49 MiB. This
> should
> + ;; not be necessary when using the GraphicsMagick release
> + ;; tarball, because these files are not distributed
> there.
> + (for-each delete-file-recursively '("bzlib" "dcraw"
> "hp2xx"
> + "jbig" "jp2" "jpeg"
> + "lcms" "libxml" "png"
> + "ralcgm" "tiff" "ttf"
> + "webp" "wmf" "xlib"
> + "zlib"))))))
You can even remove ‘begin’.
LGTM, thank you!
Ludo’.