From: Arne Babenhauserheide <arne_bab@web.de>
To: 36627@debbugs.gnu.org
Cc: Arne Babenhauserheide <arne_bab@web.de>
Subject: [bug#36627] [PATCH] gnu: package pngquant and libimagequant
Date: Fri, 12 Jul 2019 23:38:39 +0200 [thread overview]
Message-ID: <20190712213839.23635-1-arne_bab@web.de> (raw)
* gnu/packages/image.scm (pngquant): Package 2.12.3
* gnu/packages/image.scm (libimagequant): Package 2.12.3
---
gnu/packages/image.scm | 65 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 65 insertions(+)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index fabc2fb2d1..511f5302b7 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -258,6 +258,71 @@ files. It can compress them as much as 40% losslessly.")
;; This package used to be wrongfully name "pngcrunch".
(deprecated-package "pngcrunch" pngcrush))
+(define-public pngquant
+ (package
+ (name "pngquant")
+ (version "2.12.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://pngquant.org/pngquant-"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1mr0c7cd6m5hwz2fgbgmphirpf5mm4q546cpc31nwsrj4390qz2h"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:tests? #f ; no check target
+ #:phases (modify-phases %standard-phases
+ (replace 'build
+ (lambda _
+ (invoke "make"
+ (string-append
+ "LIQSRCDIR="
+ (assoc-ref %build-inputs "libimagequant")
+ "/lib")
+ "pngquant"))))))
+ (inputs
+ `(("libpng" ,libpng)
+ ("zlib" ,zlib)
+ ("libimagequant" ,libimagequant)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "https://pngquant.org")
+ (synopsis "Lossy png compression")
+ (description "pngquant is a command-line utility for lossy compression of
+PNG images.")
+ (license license:gpl3+)))
+
+
+(define-public libimagequant
+ (package
+ (name "libimagequant")
+ (version "2.12.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/ImageOptim/libimagequant/archive/"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0ggiizj6vz2i1r5ff1hgjl1v0hx8227wdgwxrlb29rd7ax38bmrb"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (arguments
+ '(#:tests? #f ; no check target
+ #:phases (modify-phases %standard-phases
+ (replace 'build
+ (lambda _ (invoke "make" "libimagequant.so"))))))
+ (home-page "https://pngquant.org/lib/")
+ (synopsis "Utility to compress PNG files")
+ (description "libimagequant is a library for lossy compression of PNG images.")
+ (license license:gpl3+)))
+
+
(define-public pnglite
(let ((commit "11695c56f7d7db806920bd9229b69f230e6ffb38")
(revision "1"))
--
2.22.0
next reply other threads:[~2019-07-12 21:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-12 21:38 Arne Babenhauserheide [this message]
2019-07-15 10:43 ` bug#36627: [PATCH] gnu: package pngquant and libimagequant Ludovic Courtès
2019-07-15 11:16 ` [bug#36627] " Arne Babenhauserheide
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190712213839.23635-1-arne_bab@web.de \
--to=arne_bab@web.de \
--cc=36627@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).