From mboxrd@z Thu Jan 1 00:00:00 1970 From: iyzsong@member.fsf.org (=?utf-8?B?5a6L5paH5q2m?=) Subject: Re: [PATCH] gnu: Add Mr. Rescue. Date: Sun, 18 Sep 2016 19:24:27 +0800 Message-ID: <87lgyptpqs.fsf@member.fsf.org> References: <20160917132405.17071-1-iyzsong@gmail.com> <87eg4hr59p.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34388) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blaCz-0005xH-VU for guix-devel@gnu.org; Sun, 18 Sep 2016 07:24:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1blaCv-0002Wi-Uo for guix-devel@gnu.org; Sun, 18 Sep 2016 07:24:29 -0400 Received: from smtp14.openmailbox.org ([62.4.1.48]:54024) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blaCv-0002Vr-Od for guix-devel@gnu.org; Sun, 18 Sep 2016 07:24:25 -0400 In-Reply-To: <87eg4hr59p.fsf@elephly.net> (Ricardo Wurmus's message of "Sun, 18 Sep 2016 10:17:22 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Ricardo Wurmus Cc: guix-devel@gnu.org Ricardo Wurmus writes: > =E5=AE=8B=E6=96=87=E6=AD=A6 writes: > >> * gnu/packages/games.scm (mrrescue): New variable. >> --- >> gnu/packages/games.scm | 48 +++++++++++++++++++++++++++++++++++++++++++= +++++ >> 1 file changed, 48 insertions(+) >> >> diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm >> index d386e2c..8d321fc 100644 >> --- a/gnu/packages/games.scm >> +++ b/gnu/packages/games.scm >> @@ -2856,3 +2856,51 @@ programmers may also add their own favorite langu= age.") >> application that locks the keyboard and mouse and instead displays brig= ht >> colors, pictures, and sounds.") >> (license license:gpl3+))) >> + >> +(define-public mrrescue >> + (package >> + (name "mrrescue") >> + (version "1.02e") >> + (source (origin >> + (method url-fetch) >> + (uri (string-append >> + "https://github.com/SimonLarsen/mrrescue/releases/" >> + "download/" version "/" name version ".love")) >> + (file-name (string-append name "-" version ".love")) > > What is this file? Are these sources or is this a binary image? > >> [...] > > Is the =E2=80=9C.love=E2=80=9D file the source archive? In the repositor= y I only see > =E2=80=9C.lua=E2=80=9D files. Shouldn=E2=80=99t we compile them from sou= rce? It's both the love2d package format and source archive [1], which is just a zip file of the project directory. [1] https://love2d.org/wiki/Game_Distribution