From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51382) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dgXMc-0000hU-Bu for guix-patches@gnu.org; Sat, 12 Aug 2017 10:26:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dgXMY-0006sR-6s for guix-patches@gnu.org; Sat, 12 Aug 2017 10:26:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47866) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dgXMY-0006rp-3Z for guix-patches@gnu.org; Sat, 12 Aug 2017 10:26:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dgXMX-0000PI-NH for guix-patches@gnu.org; Sat, 12 Aug 2017 10:26:01 -0400 Subject: [bug#28065] [PATCH] gnu: Add OpenMW. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dgXLp-0000RV-UF for guix-patches@gnu.org; Sat, 12 Aug 2017 10:25:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dgXLl-000614-PW for guix-patches@gnu.org; Sat, 12 Aug 2017 10:25:17 -0400 Received: from mail-wm0-x22d.google.com ([2a00:1450:400c:c09::22d]:36281) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dgXLl-0005zO-HZ for guix-patches@gnu.org; Sat, 12 Aug 2017 10:25:13 -0400 Received: by mail-wm0-x22d.google.com with SMTP id t201so10173425wmt.1 for ; Sat, 12 Aug 2017 07:25:13 -0700 (PDT) From: manolis837@gmail.com Date: Sat, 12 Aug 2017 17:24:52 +0300 Message-Id: <20170812142452.25952-1-manolis837@gmail.com> 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: 28065@debbugs.gnu.org Cc: alezost@gmail.com From: Manolis Ragkousis * 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