[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73522] [PATCH games-team 01/14] gnu: Add retroarch-assets.
From: |
Maxim Cournoyer |
Subject: |
[bug#73522] [PATCH games-team 01/14] gnu: Add retroarch-assets. |
Date: |
Sun, 6 Oct 2024 14:31:57 +0900 |
* gnu/packages/emulators.scm (retroarch-assets): New variable.
Change-Id: I1ac0eb6fd3e1e9c1ef5b4b120e7ac72cf3b68ca0
---
gnu/packages/emulators.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index 3030d44e1b..b9bde23ce1 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -1496,6 +1496,31 @@ (define-public libretro-lowresnx
as RetroArch.")
(license license:zlib)))
+(define-public retroarch-assets
+ (package
+ (name "retroarch-assets")
+ (version "1.19.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/libretro/retroarch-assets")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1i496x0lkqard5i9045yf438kivwd6f6za8p9fil8w1rfrhk2knz"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:tests? #f ;no test suite
+ #:make-flags #~(list (string-append "PREFIX=" #$output))
+ #:phases #~(modify-phases %standard-phases
+ (delete 'build)))) ;no compilation required
+ (home-page "https://www.libretro.com/")
+ (synopsis "RetroArch menu assets")
+ (description "The RetroArch assets are the user interface elements used to
+generate the various User Experience (UX) environments.")
+ (license license:cc-by4.0)))
+
(define-public retroarch
(package
(name "retroarch")
--
2.46.0
- [bug#73522] [PATCH games-team 00/14] Package and use RetroArch assets, plus other improvements., Maxim Cournoyer, 2024/10/06
- [bug#73522] [PATCH games-team 01/14] gnu: Add retroarch-assets.,
Maxim Cournoyer <=
- [bug#73522] [PATCH games-team 02/14] gnu: Add retroarch-core-info., Maxim Cournoyer, 2024/10/06
- [bug#73522] [PATCH games-team 03/14] gnu: Add retroarch-joypad-autoconfig., Maxim Cournoyer, 2024/10/06
- [bug#73522] [PATCH games-team 05/14] gnu: retroarch: Add missing inputs, upgrade Qt to version 6., Maxim Cournoyer, 2024/10/06
- [bug#73522] [PATCH games-team 04/14] gnu: retroarch: Use gexps., Maxim Cournoyer, 2024/10/06
- [bug#73522] [PATCH games-team 08/14] gnu: retroarch: Really disable online fetching of cores and resources., Maxim Cournoyer, 2024/10/06
- [bug#73522] [PATCH games-team 07/14] gnu: retroarch: Extend search-path support., Maxim Cournoyer, 2024/10/06
- [bug#73522] [PATCH games-team 12/14] gnu: Add libretro-mupen64plus-nx., Maxim Cournoyer, 2024/10/06