gib-gab-gob/hall.scm

49 lines
1.6 KiB
Scheme
Raw Normal View History

2023-02-03 13:18:17 +00:00
(hall-description
(name "gib-gab-gob")
(prefix "")
(version "0.1")
(author "Vivi Langdon")
(copyright (2023))
(synopsis
"Rock Paper Scissors and Tic Tac Toe in Goblins!")
(description
"This project demonstrates both Rock Paper Scissors and Tic Tac Toe in Goblins!")
(home-page "https://solarpunk.moe")
(license gpl3+)
(dependencies
`(("guile-goblins" (goblins) ,guile-goblins)))
(skip ())
(files (libraries
((directory
"gib-gab-gob"
2023-07-10 02:35:12 +00:00
((directory "ui" ((scheme-file "console")))
(compiled-scheme-file "board")
(scheme-file "game")
(scheme-file "board")
2023-07-07 06:19:47 +00:00
(scheme-file "rps")
2023-07-10 02:35:12 +00:00
(compiled-scheme-file "game")
(compiled-scheme-file "rps")))))
2023-07-07 06:19:47 +00:00
(tests ())
(programs
((directory
"scripts"
2023-07-10 02:35:12 +00:00
((in-file "make-initiator")
2023-07-07 06:19:47 +00:00
(text-file "make-joiner")
2023-07-10 02:35:12 +00:00
(text-file "make-initiator")
(in-file "make-joiner")))))
2023-07-07 05:04:03 +00:00
(documentation
2023-07-10 02:35:12 +00:00
((text-file "COPYING") (org-file "README")))
2023-02-03 13:18:17 +00:00
(infrastructure
2023-07-10 02:35:12 +00:00
((shell-file "bootstrap")
(scheme-file "guix")
(in-file "pre-inst-env")
2023-02-03 13:18:17 +00:00
(directory
"build-aux"
2023-07-07 06:19:47 +00:00
((scheme-file "test-driver")
2023-02-03 13:18:17 +00:00
(text-file "missing")
2023-07-07 06:19:47 +00:00
(text-file "install-sh")))
2023-07-10 02:35:12 +00:00
(scheme-file "hall")
(text-file ".gitignore")
(autoconf-file "configure")
(automake-file "Makefile")))))