From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:48126) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jDHhD-00074r-PK for guix-patches@gnu.org; Sat, 14 Mar 2020 21:04:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jDHhC-0003rn-Lj for guix-patches@gnu.org; Sat, 14 Mar 2020 21:04:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:56370) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jDHhC-0003ql-Ih for guix-patches@gnu.org; Sat, 14 Mar 2020 21:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jDHhC-0005sc-Di for guix-patches@gnu.org; Sat, 14 Mar 2020 21:04:02 -0400 Subject: [bug#40066] [PATCH] gnu: add premake5. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:47893) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jDHgr-00073J-1N for guix-patches@gnu.org; Sat, 14 Mar 2020 21:03:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jDHgo-00026I-Rw for guix-patches@gnu.org; Sat, 14 Mar 2020 21:03:40 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:19444) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jDHgo-0001kz-C7 for guix-patches@gnu.org; Sat, 14 Mar 2020 21:03:38 -0400 Received: from localhost.localdomain (193-83-20-222.hdsl.highway.telekom.at [193.83.20.222]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 48g1Gs1qNKz3wgL for ; Sun, 15 Mar 2020 01:56:53 +0100 (CET) From: Leo Prikler Date: Sun, 15 Mar 2020 01:52:37 +0100 Message-Id: <20200315005236.3031-1-leo.prikler@student.tugraz.at> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40066@debbugs.gnu.org * gnu/packages/build-tools.scm (premake5): New variable. --- gnu/packages/build-tools.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index 63dc72e1a7..816eb6c8fe 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -245,6 +245,31 @@ other lower-level build files.") (home-page "https://premake.github.io") (license license:bsd-3))) =20 +(define-public premake5 + (package + (inherit premake4) + (version "5.0.0-alpha14") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/premake/premake-co= re/" + "releases/download/v" version + "/premake-" version "-src.zip")) + (sha256 + (base32 + "0236s7bjvxf7x1l5faywmfzjywflpx42ngyhkn0mqqjnh54a97vw"))= )) + (arguments + (substitute-keyword-arguments (package-arguments premake4) + ((#:phases phases) + `(modify-phases ,phases + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (install-file "../../bin/release/premake5" + (string-append (assoc-ref outputs "out") "/= bin")) + #t)))))) + (description "@code{premake5} is a command line utility that reads a +scripted definition of a software project and outputs @file{Makefile}s o= r +other lower-level build files."))) + (define-public osc (package (name "osc") --=20 2.25.1