From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:45364) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gvgJH-0006mZ-4K for guix-patches@gnu.org; Mon, 18 Feb 2019 05:38:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gvgJG-0002tJ-9h for guix-patches@gnu.org; Mon, 18 Feb 2019 05:38:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52842) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gvgJG-0002sy-01 for guix-patches@gnu.org; Mon, 18 Feb 2019 05:38:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gvgJF-0004BT-Oz for guix-patches@gnu.org; Mon, 18 Feb 2019 05:38:01 -0500 Subject: [bug#34523] Add tetrinet Resent-Message-ID: References: From: Ricardo Wurmus In-reply-to: Date: Mon, 18 Feb 2019 11:36:52 +0100 Message-ID: <87mumtwfgb.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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: pkill9@runbox.com Cc: 34523@debbugs.gnu.org pkill9@runbox.com writes: > The license is written in the README as > > ``` > Distribution/license information > -------------------------------- > This program is public domain, and may be modified and distributed without > limitation. > ``` > > So I don't know what license to put it as, so I set it as 'expat'. =E2=80=9Cexpat=E2=80=9D is not correct. Use =E2=80=9Cpublic-domain=E2=80= =9D instead. > + #:phases (modify-phases %standard-phases > + (delete 'configure) > + (add-after 'unpack 'fix-install-dir > + (lambda* (#:key outputs #:allow-other-keys) > + (let ((out (assoc-ref outputs "out"))) > + (mkdir-p (string-append out "/bin")) > + (substitute* "Makefile" > + (("/usr/games") (string-append out "/bin")))))= )))) Can this patching be avoided by passing a make flag instead? -- Ricardo