aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2024-09-08 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2024-09-08 02:00:00 +0200
commitfad392b3394fa95c045742053700da0c6678a011 (patch)
treeee7654af168c47242615a94b2e5815efc2fc890e /gnu/packages
parentbb65074efbba87c2265bf889e3f5ead472af4367 (diff)
downloadguix-fad392b3394fa95c045742053700da0c6678a011.tar.gz
guix-fad392b3394fa95c045742053700da0c6678a011.zip
gnu: apricots: Disable tests.
* gnu/packages/games.scm (apricots)[arguments]: Disable #:tests?. [native-inputs]: Remove cppcheck. Change-Id: I50e7ae3f8e41ffc415d19055e096f3538ada94a2
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/games.scm9
1 files 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")