gnu: starfighter: Update to 2.0.0.3.
* gnu/packages/games.scm (starfighter): Update to 2.0.0.3. [source]: Use url-fetch and remove 'file-name' field. [native-inputs]: Remove autoconf and automake.
This commit is contained in:
parent
91f55717ab
commit
8172ab2dde
|
@ -3264,26 +3264,19 @@ tactics.")
|
||||||
(define-public starfighter
|
(define-public starfighter
|
||||||
(package
|
(package
|
||||||
(name "starfighter")
|
(name "starfighter")
|
||||||
(version "2.0.0.2")
|
(version "2.0.0.3")
|
||||||
;; As recommended by the upstream maintainer, use the git source code
|
|
||||||
;; instead of the released source tarball until missing files in the tarball
|
|
||||||
;; are added. The 'url-fetch' method may be appropriate again after the
|
|
||||||
;; next update. See https://github.com/pr-starfighter/starfighter/issues/1
|
|
||||||
;; for more details.
|
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append
|
||||||
(url "https://github.com/pr-starfighter/starfighter")
|
"https://github.com/pr-starfighter/starfighter/releases"
|
||||||
(commit (string-append "v" version))))
|
"/download/v" version "/starfighter-"
|
||||||
(file-name (git-file-name name version))
|
(version-major+minor version) "-src.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0p81ywgm2dxjbpmbsgx4f2d83sy6lv3hinrr1vzprkf9viidqnd2"))))
|
"13vi5kh9ahws4f52421cbyw0jn7pmbnld358lqfmr6flql7ilj3b"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("pkg-config" ,pkg-config)))
|
||||||
("automake" ,automake)
|
|
||||||
("pkg-config" ,pkg-config)))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("pango" ,pango)
|
`(("pango" ,pango)
|
||||||
("sdl2" ,sdl2)
|
("sdl2" ,sdl2)
|
||||||
|
|
Loading…
Reference in New Issue