mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add augustus.
* gnu/packages/games.scm (augustus): New variable.
This commit is contained in:
parent
526a0066ac
commit
1b917f99b5
1 changed files with 39 additions and 0 deletions
|
@ -1011,6 +1011,45 @@ (define-public julius
|
|||
(license (list license:agpl3
|
||||
license:zlib)))) ; ext/tinyfiledialogs
|
||||
|
||||
(define-public augustus
|
||||
(package
|
||||
(inherit julius)
|
||||
(name "augustus")
|
||||
(version (package-version julius))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Keriew/augustus")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0ii0w0iwa9zv5bbqfcps5mxifd796m6fw4gvjf09pkm3yjgqc0ag"))
|
||||
;; Remove unused bundled libraries.
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
(with-directory-excursion "ext"
|
||||
(for-each delete-file-recursively '("dirent" "png" "SDL2" "zlib")))
|
||||
#t))))
|
||||
(arguments
|
||||
;; No tests. See https://github.com/Keriew/augustus/issues/82.
|
||||
`(#:tests? #f))
|
||||
(home-page "https://github.com/Keriew/augustus")
|
||||
(synopsis "Re-implementation of Caesar III game engine with gameplay changes")
|
||||
(description
|
||||
"Fork of Julius, an engine for the a city-building real-time strategy
|
||||
game Caesar III. Gameplay enhancements include:
|
||||
|
||||
@itemize
|
||||
@item roadblocks;
|
||||
@item market special orders;
|
||||
@item global labour pool;
|
||||
@item partial warehouse storage;
|
||||
@item increased game limits;
|
||||
@item zoom controls.
|
||||
@end itemize\n")))
|
||||
|
||||
(define-public meandmyshadow
|
||||
(package
|
||||
(name "meandmyshadow")
|
||||
|
|
Loading…
Reference in a new issue