bugafriend/hall.scm

65 lines
2.0 KiB
Scheme
Raw Permalink Normal View History

2024-01-31 02:37:30 +00:00
(hall-description
(name "bugafriend")
(prefix "")
(version "0.1")
(author "Vivi Langdon")
2024-01-31 04:30:34 +00:00
(email "puttabutta@gmail.com")
2024-01-31 02:37:30 +00:00
(copyright (2024))
(synopsis "")
(description "")
(home-page "")
(license gpl3+)
2024-01-31 04:30:34 +00:00
(dependencies
`(("guile-goblins" (goblins) ,guile-goblins)
("guile-ncurses" (ncurses curses) ,guile-ncurses)))
(skip ())
2024-01-31 04:30:34 +00:00
(features
((guix #f)
(use-guix-specs-for-dependencies #f)
(native-language-support #f)
(licensing #t)))
2024-01-31 02:37:30 +00:00
(files (libraries
((directory
2024-01-31 04:30:34 +00:00
"bugafriend"
((scheme-file "logging")
(directory
"utils"
((scheme-file "array-list")
(scheme-file "concurrent-queue")
(scheme-file "registry")))
(directory
"ncurses"
((scheme-file "vat") (scheme-file "stuff")))
(scheme-file "event-loop")
2024-02-03 02:41:37 +00:00
(scheme-file "user")
(scheme-file "room")
2024-01-31 04:30:34 +00:00
(scheme-file "hconfig")
(scheme-file "ui")))
(directory "scripts" ((in-file "run-client")))
(scheme-file "bugafriend")))
2024-01-31 02:37:30 +00:00
(tests ((directory "tests" ())))
2024-01-31 04:30:34 +00:00
(programs
((directory
"scripts"
2024-02-03 11:01:18 +00:00
((text-file "run-client")))))
2024-01-31 02:37:30 +00:00
(documentation
((org-file "README")
(symlink "README" "README.org")
(text-file "HACKING")
(text-file "COPYING")
2024-01-31 04:30:34 +00:00
(directory
"doc"
((texi-file "version")
(text-file ".dirstamp")
(text-file "stamp-vti")
(info-file "bugafriend")
2024-02-03 02:41:37 +00:00
(info-file "version")
2024-01-31 04:30:34 +00:00
(texi-file "bugafriend")))
(text-file "NEWS")
(text-file "AUTHORS")
(text-file "ChangeLog")))
2024-01-31 02:37:30 +00:00
(infrastructure
((scheme-file "guix")
(text-file ".gitignore")
2024-02-03 02:49:32 +00:00
(scheme-file "hall")))))