;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2015 Andreas Enge ;;; Copyright © 2015, 2016 Ludovic Courtès ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages netpbm) #:use-module (gnu packages) #:use-module (gnu packages compression) #:use-module (gnu packages
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Neidhardt <mail@ambrevar.xyz>2019-11-04 12:37:55 +0100
committerPierre Neidhardt <mail@ambrevar.xyz>2019-11-04 12:37:55 +0100
commit865e66daf3d672bb0acb8a4205f842667124faaf (patch)
tree94ad09625cd4918a3c2762fccfe4bb600ac80b9c /gnu/installer/newt/network.scm
parentef189ab3b82a29991d9952b6c98b2f8c7acc7c88 (diff)
downloadguix-865e66daf3d672bb0acb8a4205f842667124faaf.tar.gz
guix-865e66daf3d672bb0acb8a4205f842667124faaf.zip
gnu: Add emacs-windower.
* gnu/packages/emacs-xyz.scm (emacs-windower): New variable.
Diffstat (limited to 'gnu/installer/newt/network.scm')
0 files changed, 0 insertions, 0 deletions
y about non-existing file (substitute* "test/all-in-place.test" (("^rm ") "rm -f ")) ;; remove four tests that fail for unknown reasons (substitute* "test/Test-Order" (("all-in-place.test") "") (("pnmpsnr.test") "") (("pnmremap1.test") "") (("gif-roundtrip.test") "") ;; These two tests started failing in netpbm-10.78.3. (("jpeg-roundtrip.test") "") (("pbmtext.test") "") ;; Skip tests that use nonfree programs that we don't build. (("ps-alt-roundtrip.test") "" ) (("pbm-misc-converters.test") "")) #t)) (replace 'install (lambda* (#:key outputs make-flags #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (apply invoke "make" "package" (string-append "pkgdir=" out) make-flags) ;; Remove superfluous files. (with-directory-excursion out (for-each delete-file-recursively '("config_template" "pkginfo" "README" "VERSION" "link/" "misc/")) ;; Install the required ‘libnetpbm.so’ link. ;; See . (with-directory-excursion "lib" (symlink (match (find-files "." "^libnetpbm\\.so\\.[^.]*\\.[^.]*$") ((head _ ...) head)) "libnetpbm.so")) #t))))))) (synopsis "Toolkit for manipulation of images") (description "Netpbm is a toolkit for the manipulation of graphic images, including the conversion of images between a variety of different formats. There are over 300 separate tools in the package including converters for about 100 graphics formats.") (license gpl2) (home-page "http://netpbm.sourceforge.net/")))