guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: xpad: Update to 5.0.0.


From: Marius Bakke
Subject: 02/04: gnu: xpad: Update to 5.0.0.
Date: Mon, 16 Apr 2018 18:42:00 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 08fda9c6c0e15c223225e780e8aa1dc5a8546ee7
Author: Rene <address@hidden>
Date:   Sat Apr 14 12:19:52 2018 -0500

    gnu: xpad: Update to 5.0.0.
    
    * gnu/packages/gnome.scm (xpad) Update to 5.0.0.
    [arguments]: Add autogen phase.
    [native-inputs]: Add autoconf and automake.
    [inputs]: Remove gtk+.
    [native-inputs]: Add gtk+:bin.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/gnome.scm | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 43ea75a..9145f62 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -6661,22 +6661,31 @@ is suitable as a default application in a Desktop 
environment.")
 (define-public xpad
   (package
     (name "xpad")
-    (version "4.8.0")
+    (version "5.0.0")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://launchpad.net/xpad/trunk/4.8.0/+download/";
+       (uri (string-append "https://launchpad.net/xpad/trunk/";
+                           version "/+download/"
                            name "-" version ".tar.bz2"))
        (sha256
         (base32
-         "17f915yyvfa2fsavq6wh0q0dfhib28b4k1gc0292b9xdlrvy7f22"))))
+         "02yikxg6z9bwla09ka001ppjlpbv5kbza3za9asazm5aiz376mkb"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'run-autogen
+           (lambda _
+             (system* "sh" "autogen.sh"))))))
     (native-inputs
-     `(("intltool" ,intltool)
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("gtk+:bin" ,gtk+ "bin")
+       ("intltool" ,intltool)
        ("pkg-config" ,pkg-config)))
     (inputs
-     `(("gtk+" ,gtk+)
-       ("gtksourceview" ,gtksourceview)
+     `(("gtksourceview" ,gtksourceview)
        ("libsm" ,libsm)))
     (home-page "https://wiki.gnome.org/Apps/Xpad";)
     (synopsis "Virtual sticky note")



reply via email to

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