summaryrefslogtreecommitdiff
path: root/hall.scm
blob: 49163470e6af6ee455b104eb2d728ae47c0f5ac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
(hall-description
  (name "neocities")
  (prefix "guile")
  (version "0.1")
  (author "Ekaitz Zarraga")
  (copyright (2023))
  (synopsis "Neocities API and Command Line tool")
  (description
    "Command line tool and API access for Neocities.org")
  (home-page "http://git.elenq.tech/guile-neocities/")
  (license gpl3+)
  (dependencies
    `(("guile-json" (json) ,guile-json-4)
      ("guile-gcrypt" (gcrypt base64) ,guile-gcrypt)))
  (skip ())
  (files (libraries
           ((directory
              "neocities"
              ((scheme-file "api")
               (scheme-file "requests")
               (scheme-file "mime")))))
         (tests
           ((directory "tests" ((scheme-file "requests")))))
         (programs
           ((directory "scripts" ((in-file "neocities")))))
         (documentation
           ((text-file "ChangeLog")
            (text-file "AUTHORS")
            (text-file "NEWS")
            (markdown-file "README")
            (text-file "HACKING")
            (text-file "COPYING")
            (directory "doc" ((texi-file "neocities")))))
         (infrastructure
           ((scheme-file "guix")
            (scheme-file "hall")))))