From 70febb5db56a960eb0f7cdddc0081b785962840f Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Wed, 29 Oct 2025 10:59:01 +0100 Subject: [PATCH] gnu: Remove ufoai-data. * gnu/packages/games.scm (ufoai-data): Delete variable. Change-Id: I31b75a1c44f1b92a46582a21c3e4b632b943327f --- gnu/packages/games.scm | 44 ------------------------------------------ 1 file changed, 44 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index c39a02480cd5a0718b124e073131e66678882bcf..886a3edc4244748a095b3cff4f5df3f5b2bd8074 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3707,50 +3707,6 @@ equipped with spoken co-driver notes and co-driver icons.") maps for the UFO: Alien Invasion strategy game.") (license license:gpl2+))) -(define ufoai-data - (package - (name "ufoai-data") - (version %ufoai-version) - (home-page "https://ufoai.org/") - (source ufoai-source) - (build-system gnu-build-system) - (arguments - '(#:tests? #f - #:configure-flags '("CC=gcc" "CXX=g++") - #:phases (modify-phases %standard-phases - (replace 'configure - (lambda* (#:key outputs (configure-flags '()) #:allow-other-keys) - (apply invoke "./configure" configure-flags))) - (replace 'build - (lambda* (#:key (parallel-build? #t) #:allow-other-keys) - (invoke "make" - "-j" (if parallel-build? - (number->string (parallel-job-count)) - "1") - "maps"))) - (add-after 'build 'pack - (lambda _ - (invoke "make" "pk3"))) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (for-each (lambda (file) - (install-file file out)) - (find-files "base" "\\.pk3$")) - #t)))))) - (native-inputs - `(("python" ,python-2) - ("ufo2map" ,ufo2map) - ("which" ,which) - ("zip" ,zip))) - (synopsis "UFO: AI data files") - (description - "This package contains maps and other assets for UFO: Alien Invasion.") - ;; Most assets are available under either GPL2 or GPL2+. Some use other - ;; licenses, see LICENSES for details. - (license (list license:gpl2+ license:gpl2 license:cc-by3.0 - license:cc-by-sa3.0 license:public-domain)))) - (define-public xshogi (package (name "xshogi")