diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-19 01:15:59 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-19 01:15:59 +0200 |
commit | 2ee70a5b11e83e1abe4b749a21f15852f7fcf5e1 (patch) | |
tree | 6cde1b54aa7dd8880321ebaf11d9e722e39156f2 /gnu/packages/games.scm | |
parent | 96783ed6275cd2818ff56916274e6e4582f1dc9b (diff) | |
parent | 4678cc46a4c1e0538402d8df6d85d3caedc7f00b (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 19d6a16074..8e9db1412a 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3263,24 +3263,33 @@ tactics.") (define-public starfighter (package (name "starfighter") - (version "1.7") + (version "2.0.0.2") + ;; 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 - (method url-fetch) - (uri (string-append - "mirror://savannah/starfighter/" - (version-major+minor version) "/" - "starfighter-" version "-src.tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/pr-starfighter/starfighter") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1646hpjq8bz2fkfkja1dah511hn7zd2r7da4w9c9blhad3p5732v")))) + "0p81ywgm2dxjbpmbsgx4f2d83sy6lv3hinrr1vzprkf9viidqnd2")))) (build-system gnu-build-system) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("pkg-config" ,pkg-config))) (inputs - `(("sdl2" ,sdl2) + `(("pango" ,pango) + ("sdl2" ,sdl2) ("sdl2-image" ,sdl2-image) - ("sdl2-mixer" ,sdl2-mixer))) - (home-page "http://starfighter.nongnu.org/") + ("sdl2-mixer" ,sdl2-mixer) + ("sdl2-ttf" ,sdl2-ttf))) + (home-page "https://pr-starfighter.github.io/") (synopsis "2D scrolling shooter game") (description "In the year 2579, the intergalactic weapons corporation, WEAPCO, has |