[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] gnu: Add cmatrix.
From: |
Ludovic Courtès |
Subject: |
Re: [PATCH] gnu: Add cmatrix. |
Date: |
Tue, 01 Jul 2014 12:28:08 +0200 |
User-agent: |
Gnus/5.130009 (Ma Gnus v0.9) Emacs/24.3 (gnu/linux) |
Cyrill Schenkel <address@hidden> skribis:
> From b2f37807cbf4fa150272c5ff77eba7a8aeecfcef Mon Sep 17 00:00:00 2001
> From: Cyrill Schenkel <address@hidden>
> Date: Tue, 1 Jul 2014 12:02:26 +0200
> Subject: [PATCH] gnu: Add cmatrix.
>
> * gnu-system.am (GNU_SYSTEM_MODULES): Add new package.
> * gnu/packages/cmatrix.scm: New file.
[...]
> +(define-module (gnu packages acl)
Copy/paste error here.
Also, what about putting it in games.scm instead?
> + (build-system gnu-build-system)
> + (arguments
> + '(#:phases
> + (alist-cons-before
> + 'patch-source-shebangs 'autoreconf
> + (lambda args
> + (system* "autoreconf" "-fi"))
> + %standard-phases)))
This shouldn’t be needed because the tarballs includes ./configure,
Makefile.in, etc.
> + (inputs `(("ncurses" ,ncurses)
> + ("autoconf" ,autoconf)
> + ("automake" ,automake)))
Likewise: no need to depend on Autoconf and Automake.
> + (synopsis "CMatrix simulates the display from \"The Matrix\"")
In general the synopsis shouldn’t repeat the package name, so:
Simulate the display from \"The Matrix\"
Could you send an updated patch?
Thanks!
Ludo’.