[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73488] [PATCH games v3 3/7] gnu: Add jg-api.
From: |
Maxim Cournoyer |
Subject: |
[bug#73488] [PATCH games v3 3/7] gnu: Add jg-api. |
Date: |
Sat, 05 Oct 2024 22:01:24 +0900 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Hi,
Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> Am Donnerstag, dem 03.10.2024 um 16:25 +0900 schrieb Maxim Cournoyer:
>> * gnu/packages/emulators.scm (jg-api): New variable.
>>
>> Change-Id: I2cd2086560f8353f8260209c4ee0f117c3615917
>> ---
>>
>> (no changes since v1)
>>
>> gnu/packages/emulators.scm | 26 ++++++++++++++++++++++++++
>> 1 file changed, 26 insertions(+)
>>
>> diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
>> index 50a7b67121..09e722b4f4 100644
>> --- a/gnu/packages/emulators.scm
>> +++ b/gnu/packages/emulators.scm
>> @@ -2260,6 +2260,32 @@ (define-public bsnes
>> performance, features, and ease of use.")
>> (license license:gpl3)))
>>
>> +(define-public jg-api
>> + (package
>> + (name "jg-api")
>> + (version "1.0.0")
>> + (source (origin
>> + (method git-fetch)
>> + (uri (git-reference
>> + (url "https://gitlab.com/jgemu/jg")
>> + (commit version)))
>> + (file-name (git-file-name name version))
>> + (sha256
>> + (base32
>> +
>> "0117cvfvzhrm9fxnryhbnf9r0f8ij4ahhfqiqp5yv11bz2wcyhqh"))))
>> + (build-system gnu-build-system)
>> + (arguments
>> + (list #:tests? #f
> #:tests? #f should always go with a comment.
Good call; I've added the "standard" ";no test suite" inline comment.
>> + #:make-flags #~(list (string-append "PREFIX=" #$output))
>> + #:phases #~(modify-phases %standard-phases
>> + (delete 'configure)))) ;no configure phase
> What about 'bootstrap?
No need to mess with it; it checks if a "configure" script exists (which
doesn't in this case -- it's a pure Make-based build system) and when it
doesn't it simply does:
--8<---------------cut here---------------start------------->8---
(format #t "GNU build system bootstrapping not needed~%")
--8<---------------cut here---------------end--------------->8---
--
Thanks,
Maxim
- [bug#73488] [PATCH games v3 2/7] gnu: bsnes: Remove input labels and use gexps., (continued)
- [bug#73488] [PATCH games v3 4/7] gnu: Add jgrf., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 5/7] gnu: Add jg-bsnes., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 6/7] gnu: Add jg-nestopia., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 3/7] gnu: Add jg-api., Maxim Cournoyer, 2024/10/03
- [bug#73488] [PATCH games v3 1/7] teams: Register (gnu packages emulators) to games team., Maxim Cournoyer, 2024/10/03
- bug#73488: [PATCH games v3 0/7] Add Jolly Good and some of its emulators, Maxim Cournoyer, 2024/10/05