From fad392b3394fa95c045742053700da0c6678a011 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 8 Sep 2024 02:00:00 +0200 Subject: [PATCH] gnu: apricots: Disable tests. * gnu/packages/games.scm (apricots)[arguments]: Disable #:tests?. [native-inputs]: Remove cppcheck. Change-Id: I50e7ae3f8e41ffc415d19055e096f3538ada94a2 --- gnu/packages/games.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index ea3f0b7b8b..45ac88ea61 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -11555,9 +11555,12 @@ play; it will look for them at @file{~/.local/share/vcmi} folder.") (base32 "0vis217hhnb9fbs9sf8mmcm71qp44kr3xqmffc1gdiixvi90c781")) (file-name (git-file-name name version)))) (build-system gnu-build-system) - (native-inputs (list autoconf ; autom4te used in ./bootstrap - automake ; aclocal used in ./bootstrap - cppcheck)) + (arguments + ;; The test suite doesn't test the built game, but merely runs cppcheck & + ;; clang-format. Useful for the maintainers; not for distributions. + (list #:tests? #f)) + (native-inputs (list autoconf ;autom4te used in ./bootstrap + automake)) ;aclocal used in ./bootstrap (inputs (list freealut openal sdl2)) (home-page "https://github.com/moggers87/apricots") (synopsis "Arcade airplane game")