[bug#79016,v2,2/2] gnu: frotz-dumb-terminal: Update to 2.55.
Commit Message
From bdc10f0861b55eb79de4769a07f8fd2f8a19fd26 Mon Sep 17 00:00:00 2001
Message-ID:
<bdc10f0861b55eb79de4769a07f8fd2f8a19fd26.1752594380.git.adam.faiz@disroot.org>
In-Reply-To:
<941264c294418e0c2b1496ff3df11c5747c8e310.1752594380.git.adam.faiz@disroot.org>
References:
<941264c294418e0c2b1496ff3df11c5747c8e310.1752594380.git.adam.faiz@disroot.org>
From: AwesomeAdam54321 <adam.faiz@disroot.org>
Date: Mon, 14 Jul 2025 21:58:11 +0800
Subject: [PATCH v2 2/2] gnu: frotz-dumb-terminal: Update to 2.55.
* gnu/packages/games.scm (frotz-dumb-terminal): Update to 2.55.
[native-inputs]: Add pkg-config and which.
[arguments]<#:phases>: Set CC variable in make command during 'build phase.
Change-Id: Ifde6b3ab631ab64a43509119caffdd61fe2e378f
---
gnu/packages/games.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
(let* ((out (assoc-ref outputs "out"))
@@ -9681,7 +9681,7 @@ (define-public naev
(define-public frotz-dumb-terminal
(package
(name "frotz-dumb-terminal")
- (version "2.44")
+ (version "2.55")
(source (origin
(method url-fetch)
(uri (list (string-append
@@ -9692,8 +9692,9 @@ (define-public frotz-dumb-terminal
"frotz/frotz-" version ".tar.gz")))
(sha256
(base32
- "1v735xr3blznac8fnwa27s1vhllx4jpz7kw7qdw1bsfj6kq21v3k"))))
+ "0wfqhxwgjwhgnjh1byjzsfj3mqhy5hialngyb53p5jjbz4pr3mp3"))))
(build-system gnu-build-system)
+ (native-inputs (list pkg-config which))
(arguments
`(#:tests? #f ; there are no tests
#:phases
@@ -9701,7 +9702,7 @@ (define-public frotz-dumb-terminal
(delete 'configure)
(replace 'build
(lambda _
- (invoke "make" "dumb")))
+ (invoke "make" (string-append "CC=" ,(cc-for-target))
"dumb")))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)