guix-patches
[Top][All Lists]
Advanced

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

[bug#27691] Fix spaces


From: Ludovic Courtès
Subject: [bug#27691] Fix spaces
Date: Thu, 20 Jul 2017 11:08:13 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)

Oleg Pykhalov <address@hidden> skribis:

>>From fa62d236c25fd50116e21fe8924d0a0edeed603a Mon Sep 17 00:00:00 2001
> From: Oleg Pykhalov <address@hidden>
> Date: Fri, 14 Jul 2017 13:04:15 +0300
> Subject: [PATCH] gnu: Add premake4.
>
> * gnu/packages/build-tools.scm (premake4): New variable.

I made the following changes (please make sure to run ‘guix lint’ before
submitting a patch) and committed.

Note that I changed the name to “premake” because that’s what they call
the project.

Thanks,
Ludo’.

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 936f733ba..353c9c8ef 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -94,12 +94,11 @@ Python.")
 
 (define-public premake4
   (package
-    (name "premake4")
+    (name "premake")
     (version "4.3")
     (source (origin
               (method url-fetch)
-              (uri (string-append
-                    "http://downloads.sourceforge.net/project/premake/Premake/";
+              (uri (string-append "mirror://sourceforge/premake/Premake/"
                                   version "/premake-" version "-src.zip"))
               (sha256
                (base32
@@ -120,8 +119,9 @@ Python.")
              (install-file "../../bin/release/premake4"
                            (string-append (assoc-ref outputs "out") "/bin"))
              #t)))))
-    (synopsis "A makefile generation tool")
-    (description "@code{premake4} is a command line utility which reads a
-scripted definition of a software project.")
+    (synopsis "Portable software build tool")
+    (description "@code{premake4} is a command line utility that reads a
+scripted definition of a software project and outputs @file{Makefile}s or
+other lower-level build files.")
     (home-page "https://premake.github.io";)
     (license license:bsd-3)))

reply via email to

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