summaryrefslogtreecommitdiff
path: root/hall.scm
blob: 3751013e006ab32f4f38f9ec22580be194058e43 (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
37
38
39
40
41
42
43
44
45
46
47
48
(hall-description
  (name "ldp")
  (prefix "")
  (version "SNAPSHOT")
  (author "Vivien Kraus")
  (copyright (2021))
  (synopsis
    "Implementation of the linked data platform specification")
  (description
    "Linked data platform is a standard for interoperable web architecture.")
  (home-page "https://guile-ldp.planete-kraus.eu")
  (license gpl3+)
  (dependencies
    `(("guile-rdf" (rdf rdf) ,guile-rdf)))
  (files (libraries
           ((scheme-file "ldp")
            (directory
              "ldp"
              ((directory
                 "resource"
                 ((directory
                    "unsafe"
                    ((scheme-file "save") (scheme-file "update")))
                  (scheme-file "load")
                  (scheme-file "sxml")
                  (scheme-file "xml")
                  (scheme-file "update")))
               (scheme-file "path")
               (scheme-file "response")
               (scheme-file "resource")
               (scheme-file "http-link")
               (scheme-file "content")
               (scheme-file "precondition")
               (scheme-file "etag")))))
         (tests ((directory "tests" ((scheme-file "ldp-primer")))))
         (programs ())
         (documentation
           ((org-file "README")
            (symlink "README" "README.org")
            (text-file "HACKING")
            (text-file "COPYING")
            (directory "doc" ((texi-file "ldp")))
            (text-file "NEWS")
            (text-file "AUTHORS")
            (text-file "ChangeLog")))
         (infrastructure
           ((scheme-file "hall")
            (directory "build-aux" ())))))