diff options
author | AwesomeAdam54321 <adam.faiz@disroot.org> | 2025-07-27 00:50:06 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-27 00:53:32 +0200 |
commit | 60b8b302d6d20273503d2544e41f93bb2faab45f (patch) | |
tree | d5a3bf9d8a2346f52148f7ccad789e182bda4409 | |
parent | 888cd83576801f95a9102c9fad6c405c7e1f0dba (diff) |
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: Ic48e5593976597d742534d5b028fb54e7a9d8789
-rw-r--r-- | gnu/packages/games.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 75f76a138b..1526550006 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -9707,7 +9707,7 @@ of lore accompanying everything from planets to equipment.") (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 @@ -9718,8 +9718,9 @@ of lore accompanying everything from planets to equipment.") "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 @@ -9727,7 +9728,7 @@ of lore accompanying everything from planets to equipment.") (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) (let* ((out (assoc-ref outputs "out")) |