all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#55532] [PATCH] gnu: Add freerct.
@ 2022-05-20  4:03 Gabriel Arazas
       [not found] ` <handler.55532.B.16530194846295.ack@debbugs.gnu.org>
  2022-06-01 21:18 ` bug#55532: " Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Gabriel Arazas @ 2022-05-20  4:03 UTC (permalink / raw)
  To: 55532; +Cc: Gabriel Arazas

* gnu/packages/games.scm (freerct): New variable.
---
 gnu/packages/games.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index c6d23298ff..c1873d4a02 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -71,6 +71,7 @@
 ;;; Copyright © 2022 Yovan Naumovski <yovan@gorski.stream>
 ;;; Copyright © 2022 Roman Riabenko <roman@riabenko.com>
 ;;; Copyright © 2022 zamfofex <zamfofex@twdb.moe>
+;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -12715,3 +12716,37 @@ (define-public liquidwar6
 original, they have been invented by Thomas Colcombet.")
     (home-page "https://www.gnu.org/software/liquidwar6/")
     (license license:gpl3+)))
+
+(define-public freerct
+  (package
+    (name "freerct")
+    (version "0.1")
+    ;; TODO: Use the source code given at the homepage.
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/FreeRCT/FreeRCT")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1szwy2cq4ffp4yxm9pp9vdyia0i5nz0wnppdd1xb9w7v3wa4mywi"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f))
+    (native-inputs (list flex bison))
+    (inputs (list libpng sdl2 sdl2-ttf))
+    (home-page "https://freerct.net/")
+    (synopsis "Theme park management simulation game")
+    (description
+     "FreeRCT is a free and open source game that captures the look and feel
+of the popular games RollerCoaster Tycoon 1 and 2, graphics- and
+gameplay-wise.
+
+In this game, you play as a manager of a theme park, allowing
+you to make a park of your dreams.  The list of responsiblities includes
+managing staff, finances, landscaping, and most importantly: rides. Good
+managers follow the principle of prioritizing the guests' happiness with a
+well-maintained park.  Should they go unwise, a theme park plunge into chaos
+with vandalizing guests and unsafe rides. Which path will you take?")
+    (license license:gpl2)))

base-commit: b6bfe9ea6a1b19159455b34f1af4ac00ef9b94ab
-- 
2.36.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#55532] [PATCH] gnu: Add freerct.
       [not found] ` <handler.55532.B.16530194846295.ack@debbugs.gnu.org>
@ 2022-05-20  9:18   ` Gabriel Arazas
  0 siblings, 0 replies; 3+ messages in thread
From: Gabriel Arazas @ 2022-05-20  9:18 UTC (permalink / raw)
  To: 55532

I opted into the Git repo instead of the zip archive since I cannot get 
consistent results with it (with the '--rounds=3' flag). The package is 
tested to be built in x86_64. Other architectures are yet to be 
confirmed since I cannot build it successfully.




^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#55532: [PATCH] gnu: Add freerct.
  2022-05-20  4:03 [bug#55532] [PATCH] gnu: Add freerct Gabriel Arazas
       [not found] ` <handler.55532.B.16530194846295.ack@debbugs.gnu.org>
@ 2022-06-01 21:18 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2022-06-01 21:18 UTC (permalink / raw)
  To: Gabriel Arazas; +Cc: 55532-done

[-- Attachment #1: Type: text/plain, Size: 340 bytes --]

Hi,

Gabriel Arazas <foo.dogsquared@gmail.com> skribis:

> * gnu/packages/games.scm (freerct): New variable.

Applied with the following changes: the TODO wasn’t necessary IMO (it’s
fine to fetch code from Git), and it’s not necessary to say it’s a free
game (everything’s free software in here!).

Thanks,
Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1002 bytes --]

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index ba3b6e89a5..9697471b3f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -12699,7 +12699,6 @@ (define-public freerct
   (package
     (name "freerct")
     (version "0.1")
-    ;; TODO: Use the source code given at the homepage.
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -12717,9 +12716,8 @@ (define-public freerct
     (home-page "https://freerct.net/")
     (synopsis "Theme park management simulation game")
     (description
-     "FreeRCT is a free and open source game that captures the look and feel
-of the popular games RollerCoaster Tycoon 1 and 2, graphics- and
-gameplay-wise.
+     "FreeRCT is a game that captures the look and feel of the popular games
+RollerCoaster Tycoon 1 and 2, graphics- and gameplay-wise.
 
 In this game, you play as a manager of a theme park, allowing
 you to make a park of your dreams.  The list of responsiblities includes

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-06-01 21:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-20  4:03 [bug#55532] [PATCH] gnu: Add freerct Gabriel Arazas
     [not found] ` <handler.55532.B.16530194846295.ack@debbugs.gnu.org>
2022-05-20  9:18   ` Gabriel Arazas
2022-06-01 21:18 ` bug#55532: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.