gnu: Add libretro-bsnes-jg.

* gnu/packages/emulators.scm (libretro-bsnes-jg): New variable.

Change-Id: I24e74c38c44d03e028d270beb184ab85af0394ba
This commit is contained in:
Maxim Cournoyer 2024-10-02 15:16:07 +09:00
parent 4b963c9ccc
commit 3e9ebe7f28
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -3351,6 +3351,44 @@ (define-public jg-bsnes
license:isc ;libco
license:lgpl2.1+))))
(define-public libretro-bsnes-jg
;; There aren't any release yet; use the latest commit.
(let ((commit "0d42dea0cb20aba8bfec05b928e4aed2b295352a")
(revision "0"))
(package
(inherit jg-bsnes)
(name "libretro-bsnes-jg")
(version (git-version "0" revision commit))
(source (origin
(inherit (package-source jg-bsnes))
(uri (git-reference
(url "https://git.libretro.com/libretro/bsnes-jg")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1dq2ypf4g4karayc9sgqn74bfnnsq2f4b3r615xyczchdaf2mi1n"))))
(arguments
(substitute-keyword-arguments (package-arguments jg-bsnes)
((#:make-flags flags)
#~(cons* #$(string-append "GIT_VERSION=" version)
(string-append "prefix=" #$output)
#$flags))
((#:phases phases)
#~(modify-phases #$phases
(add-after 'unpack 'chdir
(lambda _
(chdir "libretro")))
(add-after 'chdir 'unbundle-libsamplerate
(lambda _
(substitute* "Makefile.common"
(("LIBS \\+= -lm")
"LIBS += -lm -lsamplerate")
((".*\\$\\(CORE_DIR)/deps/libsamplerate/.*")
""))))))))
(home-page "https://git.libretro.com/libretro/bsnes-jg")
(synopsis "libretro port of bsnes-jg"))))
(define-public jg-nestopia
(package
(name "jg-nestopia")