From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53237) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eHRhQ-0007gU-Tk for guix-patches@gnu.org; Wed, 22 Nov 2017 04:52:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHRhL-000832-TD for guix-patches@gnu.org; Wed, 22 Nov 2017 04:52:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:43170) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eHRhL-00082w-Py for guix-patches@gnu.org; Wed, 22 Nov 2017 04:52:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eHRhL-0005Pw-Iw for guix-patches@gnu.org; Wed, 22 Nov 2017 04:52:03 -0500 Subject: [bug#29392] [PATCH 08/11] gnu: pingus: Use scons-build-system. Resent-Message-ID: From: Arun Isaac Date: Wed, 22 Nov 2017 15:05:04 +0530 Message-Id: <20171122093507.6827-8-arunisaac@systemreboot.net> In-Reply-To: <20171122093507.6827-1-arunisaac@systemreboot.net> References: <20171122093507.6827-1-arunisaac@systemreboot.net> 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: 29392@debbugs.gnu.org * gnu/packages/games.scm (pingus): Switch to scons-build-system. --- gnu/packages/games.scm | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 73ffa74c7..dd0d83538 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -722,7 +722,7 @@ fight Morgoth, the Lord of Darkness.") (patches (search-patches "pingus-sdl-libs-config.patch")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) - ("scons" ,scons))) + ("scons-python2" ,scons-python2))) (inputs `(("sdl" ,sdl) ("sdl-image" ,sdl-image) ("sdl-mixer" ,sdl-mixer) @@ -731,15 +731,11 @@ fight Morgoth, the Lord of Darkness.") ("libpng" ,libpng) ("boost" ,boost))) (arguments - '(#:tests? #f ; no check target + '(#:make-flags (list (string-append "PREFIX=" %output)) + #:tests? #f ; no check target #:phases (modify-phases %standard-phases - (delete 'configure) ; no configure script - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (zero? (system* "make" "install" - (string-append "PREFIX=" - (assoc-ref outputs "out"))))))))) + (delete 'configure)))) ; no configure script (home-page "http://pingus.seul.org/welcome.html") (synopsis "Lemmings clone") (description -- 2.15.0