[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: Add jg-cega.
From: |
guix-commits |
Subject: |
07/07: gnu: Add jg-cega. |
Date: |
Sat, 5 Oct 2024 09:54:38 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit afdb5af46b18ba784f9cf0f946256082a24c593c
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Sep 26 08:37:07 2024 +0900
gnu: Add jg-cega.
* gnu/packages/emulators.scm (jg-cega): New variable.
Change-Id: Ice3799d9aa4600006ac386fa40e80fb97b3018c8
---
gnu/packages/emulators.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index 3a9eee9508..3030d44e1b 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -2459,6 +2459,42 @@ of the Nestopia emulator.")
(license (list license:gpl2+ ;this project
license:lgpl2.1+)))) ;nes_ntsc source files
+(define-public jg-cega
+ (package
+ (name "jg-cega")
+ (version "0.6.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/jgemu/cega")
+ (commit version)))
+ (modules '((guix build utils)))
+ (snippet '(delete-file-recursively "deps/"))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "10qxfch08850zivxf4s1mhh0clx4h1cfn440acm6d7glb6wbv822"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:tests? #f ;no test suite
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output))
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs (list jg-api pkg-config))
+ (inputs (list speexdsp))
+ (home-page "https://gitlab.com/jgemu/cega")
+ (synopsis "Jolly Good SG-1000, SMS, Game Gear, and Mega Drive/Genesis \
+emulator")
+ (description "Cega is a cycle accurate emulator for the Sega SG-1000,
+Master System, and Game Gear written specifically for The Jolly Good API.
+Mega Drive emulation is in an experimental state.")
+ (license (list license:mpl2.0
+ license:expat ;src/emu2413, src/m68k
+ license:bsd-3 ;src/ymfm
+ license:zlib)))) ;src/z80.h
+
(define-public zsnes
(package
(name "zsnes")
- branch master updated (73ec844389 -> afdb5af46b), guix-commits, 2024/10/05
- 01/07: teams: Register (gnu packages emulators) to games team., guix-commits, 2024/10/05
- 02/07: gnu: bsnes: Remove input labels and use gexps., guix-commits, 2024/10/05
- 03/07: gnu: Add jg-api., guix-commits, 2024/10/05
- 04/07: gnu: Add jgrf., guix-commits, 2024/10/05
- 07/07: gnu: Add jg-cega.,
guix-commits <=
- 06/07: gnu: Add jg-nestopia., guix-commits, 2024/10/05
- 05/07: gnu: Add jg-bsnes., guix-commits, 2024/10/05