46 lines
1.5 KiB
Scheme
46 lines
1.5 KiB
Scheme
(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"
|
|
((compiled-scheme-file "game")
|
|
(scheme-file "rps")
|
|
(scheme-file "game")
|
|
(compiled-scheme-file "board")
|
|
(scheme-file "board")
|
|
(compiled-scheme-file "rps")))))
|
|
(tests ((directory "tests" ())))
|
|
(programs
|
|
((directory
|
|
"scripts"
|
|
((in-file "make-joiner")
|
|
(in-file "make-initiator")
|
|
(text-file "make-initiator")
|
|
(text-file "make-joiner")))))
|
|
(documentation ((org-file "README")))
|
|
(infrastructure
|
|
((in-file "pre-inst-env")
|
|
(directory
|
|
"build-aux"
|
|
((tex-file "texinfo")
|
|
(scheme-file "test-driver")
|
|
(text-file "missing")
|
|
(text-file "install-sh")
|
|
(text-file "mdate-sh")))
|
|
(scheme-file "hall")
|
|
(text-file ".gitignore")
|
|
(autoconf-file "configure")
|
|
(automake-file "Makefile")))))
|