guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

151/182: gnu: babl: Update to 0.1.72.


From: guix-commits
Subject: 151/182: gnu: babl: Update to 0.1.72.
Date: Fri, 15 Nov 2019 00:02:01 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome-updates
in repository guix.

commit fd1ff824859b6fbbcb23b7d0c9c2d791547c6523
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Nov 10 00:29:05 2019 +0100

    gnu: babl: Update to 0.1.72.
    
    * gnu/packages/gimp.scm (babl): Update to 0.1.72.
    [build-system]: Switch to Meson.
    [arguments]: Disable GObject introspection.
    [native-inputs]: Add pkg-config.
    [propagated-inputs]: Add lcms.
---
 gnu/packages/gimp.scm | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index 70bc8db..4fd3cd0 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -29,6 +29,7 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system glib-or-gtk)
+  #:use-module (guix build-system meson)
   #:use-module (gnu packages)
   #:use-module (gnu packages algebra)
   #:use-module (gnu packages autotools)
@@ -49,22 +50,30 @@
 (define-public babl
   (package
     (name "babl")
-    (version "0.1.66")
+    (version "0.1.72")
     (source (origin
               (method url-fetch)
               (uri (list (string-append "https://download.gimp.org/pub/babl/";
                                         (version-major+minor version)
-                                        "/babl-" version ".tar.bz2")
+                                        "/babl-" version ".tar.xz")
                          (string-append "https://ftp.gtk.org/pub/babl/";
                                         (version-major+minor version)
-                                        "/babl-" version ".tar.bz2")
+                                        "/babl-" version ".tar.xz")
                          (string-append "ftp://ftp.gtk.org/pub/babl/";
                                         (version-major+minor version)
-                                        "/babl-" version ".tar.bz2")))
+                                        "/babl-" version ".tar.xz")))
               (sha256
                (base32
-                "0qx1dwbinxihwl2lmxi60qiqi402jlrdcnixx14kk6j88n9xi79n"))))
-    (build-system gnu-build-system)
+                "0hkagjrnza77aasa1kss5hvy37ndm50y6i7hkdn2z8hzgc4i3qb4"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "-Denable-gir=false")))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (propagated-inputs
+     ;; Propagated to satisfy ‘babl.pc’.
+     `(("lcms" ,lcms)))
     (home-page "http://gegl.org/babl/";)
     (synopsis "Image pixel format conversion library")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]