unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#28065] [PATCH] gnu: Add OpenMW.
@ 2017-08-12 14:24 manolis837
  2017-08-12 21:02 ` Alex Kost
  2017-08-12 21:12 ` Alex Kost
  0 siblings, 2 replies; 4+ messages in thread
From: manolis837 @ 2017-08-12 14:24 UTC (permalink / raw)
  To: 28065; +Cc: alezost

From: Manolis Ragkousis <manolis837@gmail.com>

* gnu/packages/game-development.scm (openmw): New variable.
---
 gnu/packages/game-development.scm | 41 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 1cba882a2..12a560b6a 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -978,3 +978,44 @@ and 3D applications.  The main goals of mygui are: speed, flexibility and ease
 of use.")
     (home-page "http://mygui.info/")
     (license license:expat)))
+
+(define-public openmw
+  (package
+    (name "openmw")
+    (version "0.42.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://github.com/OpenMW/openmw/archive/"
+                       name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1pla8016lpbg8cgm9kia318a860f26dmiayc72p3zl35mqrc7g7w"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f                      ; No test target
+       #:configure-flags
+       (list "-DDESIRED_QT_VERSION=5")))
+    (native-inputs
+     `(("boost" ,boost)
+       ("doxygen" ,doxygen)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("bullet", bullet)
+       ("ffmpeg", ffmpeg)
+       ("libxt" ,libxt)
+       ("mygui" ,mygui)
+       ("openal" ,openal)
+       ("openscenegraph", openscenegraph)
+       ("qtbase", qtbase)
+       ("sdl" ,sdl2)
+       ("unshield", unshield)))
+    (synopsis "Free software re-implementation of the RPG Morrowind engine")
+    (description
+     "OpenMW is a free, open source and modern engine which reimplements and
+extends the one that runs the 2002 open-world RPG Morrowind.  The engine comes
+with its own editor , called OpenMW-CS which allows the user to edit or create
+their own original games.")
+    (home-page "https://openmw.org")
+    (license license:gpl3)))
-- 
2.13.4

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

* [bug#28065] [PATCH] gnu: Add OpenMW.
  2017-08-12 14:24 [bug#28065] [PATCH] gnu: Add OpenMW manolis837
@ 2017-08-12 21:02 ` Alex Kost
  2017-08-12 21:12 ` Alex Kost
  1 sibling, 0 replies; 4+ messages in thread
From: Alex Kost @ 2017-08-12 21:02 UTC (permalink / raw)
  To: manolis837; +Cc: 28065

manolis837@gmail.com (2017-08-12 17:24 +0300) wrote:

> From: Manolis Ragkousis <manolis837@gmail.com>
>
> * gnu/packages/game-development.scm (openmw): New variable.
> ---
>  gnu/packages/game-development.scm | 41 +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 41 insertions(+)
>
> diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
> index 1cba882a2..12a560b6a 100644
> --- a/gnu/packages/game-development.scm
> +++ b/gnu/packages/game-development.scm
> @@ -978,3 +978,44 @@ and 3D applications.  The main goals of mygui are: speed, flexibility and ease
>  of use.")
>      (home-page "http://mygui.info/")
>      (license license:expat)))
> +
> +(define-public openmw
> +  (package
> +    (name "openmw")
> +    (version "0.42.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri
> +        (string-append "https://github.com/OpenMW/openmw/archive/"
> +                       name "-" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "1pla8016lpbg8cgm9kia318a860f26dmiayc72p3zl35mqrc7g7w"))))
> +    (build-system cmake-build-system)
> +    (arguments
> +     `(#:tests? #f                      ; No test target
> +       #:configure-flags
> +       (list "-DDESIRED_QT_VERSION=5")))
> +    (native-inputs
> +     `(("boost" ,boost)
> +       ("doxygen" ,doxygen)
> +       ("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("bullet", bullet)
> +       ("ffmpeg", ffmpeg)
> +       ("libxt" ,libxt)
> +       ("mygui" ,mygui)
> +       ("openal" ,openal)
> +       ("openscenegraph", openscenegraph)
> +       ("qtbase", qtbase)
> +       ("sdl" ,sdl2)
> +       ("unshield", unshield)))
> +    (synopsis "Free software re-implementation of the RPG Morrowind engine")
> +    (description
> +     "OpenMW is a free, open source and modern engine which reimplements and
> +extends the one that runs the 2002 open-world RPG Morrowind.  The engine comes
> +with its own editor , called OpenMW-CS which allows the user to edit or create
                      ^
extra space-----------'

> +their own original games.")
> +    (home-page "https://openmw.org")
> +    (license license:gpl3)))

Overall, LGTM.  Thank you for all your great job on packaging openmw and
all its dependencies!

-- 
Alex

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

* [bug#28065] [PATCH] gnu: Add OpenMW.
  2017-08-12 14:24 [bug#28065] [PATCH] gnu: Add OpenMW manolis837
  2017-08-12 21:02 ` Alex Kost
@ 2017-08-12 21:12 ` Alex Kost
  2017-08-17 17:11   ` bug#28065: " Manolis Ragkousis
  1 sibling, 1 reply; 4+ messages in thread
From: Alex Kost @ 2017-08-12 21:12 UTC (permalink / raw)
  To: manolis837; +Cc: 28065

manolis837@gmail.com (2017-08-12 17:24 +0300) wrote:

[...]
> +    (inputs
> +     `(("bullet", bullet)
> +       ("ffmpeg", ffmpeg)
                   ^^
Oh, please put commas right before symbols, i.e. without extra space:

          ("bullet" ,bullet)

> +       ("libxt" ,libxt)
> +       ("mygui" ,mygui)
> +       ("openal" ,openal)
> +       ("openscenegraph", openscenegraph)
                           ^^
> +       ("qtbase", qtbase)
                   ^^
> +       ("sdl" ,sdl2)
> +       ("unshield", unshield)))
                     ^^
> +    (synopsis "Free software re-implementation of the RPG Morrowind engine")
> +    (description
> +     "OpenMW is a free, open source and modern engine which reimplements and
> +extends the one that runs the 2002 open-world RPG Morrowind.  The engine comes
> +with its own editor , called OpenMW-CS which allows the user to edit or create
> +their own original games.")
> +    (home-page "https://openmw.org")
> +    (license license:gpl3)))

-- 
Alex

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

* bug#28065: [PATCH] gnu: Add OpenMW.
  2017-08-12 21:12 ` Alex Kost
@ 2017-08-17 17:11   ` Manolis Ragkousis
  0 siblings, 0 replies; 4+ messages in thread
From: Manolis Ragkousis @ 2017-08-17 17:11 UTC (permalink / raw)
  To: Alex Kost; +Cc: 28065-done

Updated patch and pushed to master.

Now I will tell the openmw dev team that they can use Guix for
development :D.

Thank you Alex for reviewing!

Manolis

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

end of thread, other threads:[~2017-08-17 17:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-12 14:24 [bug#28065] [PATCH] gnu: Add OpenMW manolis837
2017-08-12 21:02 ` Alex Kost
2017-08-12 21:12 ` Alex Kost
2017-08-17 17:11   ` bug#28065: " Manolis Ragkousis

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).