gib-gab-gob/hall.scm

59 lines
1.9 KiB
Scheme
Raw Permalink Normal View History

2023-02-03 13:18:17 +00:00
(hall-description
(name "gib-gab-gob")
(prefix "")
(version "0.2")
2023-02-03 13:18:17 +00:00
(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)
2023-07-17 01:35:12 +00:00
("chickadee" (chickadee) ,chickadee)
("catbird", (catbird) ,catbird)))
2023-02-03 13:18:17 +00:00
(skip ())
(files (libraries
((directory
"gib-gab-gob"
2023-07-17 01:35:12 +00:00
((directory
"ui"
((compiled-scheme-file "console")
(scheme-file "catbird")
(scheme-file "console")))
(directory
"util"
((scheme-file "chickadee-vat")
(scheme-file "concurrent-queue")))
2023-07-10 02:35:12 +00:00
(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-17 01:35:12 +00:00
((org-file "README") (text-file "COPYING")))
2023-02-03 13:18:17 +00:00
(infrastructure
2023-07-17 01:35:12 +00:00
((automake-file "Makefile")
(autoconf-file "configure")
(text-file ".gitignore")
(scheme-file "hall")
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-17 01:35:12 +00:00
(in-file "pre-inst-env")
(scheme-file "guix")
(shell-file "bootstrap")))))