guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: gst-plugins-base: Enable GObjection introspection.


From: ???
Subject: 05/05: gnu: gst-plugins-base: Enable GObjection introspection.
Date: Sat, 04 Apr 2015 04:42:04 +0000

iyzsong pushed a commit to branch master
in repository guix.

commit 4ec48644c3b3760bcc8a72eb6956c678b57182a1
Author: 宋文武 <address@hidden>
Date:   Sat Apr 4 12:39:31 2015 +0800

    gnu: gst-plugins-base: Enable GObjection introspection.
    
    * gnu/packages/gstreamer.scm (gst-plugins-base): Add gobject-introspection
      to 'native-inputs'.
      [arguments]<#:phases>: Rename patch-test-pb-utils to patch.  Add
      (setenv "CC" "gcc") to patch phase.
---
 gnu/packages/gstreamer.scm |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index e941f8b..ad0cfcc 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -176,6 +176,7 @@ This package provides the core library and elements.")
     (native-inputs
       `(("pkg-config" ,pkg-config)
         ("glib" ,glib "bin")
+        ("gobject-introspection" ,gobject-introspection)
         ("python-wrapper" ,python-wrapper)))
     (arguments
      `(#:configure-flags
@@ -184,10 +185,12 @@ This package provides the core library and elements.")
                             "/share/gtk-doc/html"))
        #:phases
        (alist-cons-before
-        'configure 'patch-test-pb-utils
+        'configure 'patch
         (lambda _
           (substitute* "tests/check/libs/pbutils.c"
-            (("/bin/sh") (which "sh"))))
+            (("/bin/sh") (which "sh")))
+          ;; for g-ir-scanner.
+          (setenv "CC" "gcc"))
         %standard-phases)))
     (home-page "http://gstreamer.freedesktop.org/";)
     (synopsis



reply via email to

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