From 4b6e56ebb435f16374cebf38923393dc2f27f3ce Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Sat, 9 Jan 2021 11:57:23 +0100 Subject: Initial commit --- hall.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 hall.scm (limited to 'hall.scm') diff --git a/hall.scm b/hall.scm new file mode 100644 index 0000000..3751013 --- /dev/null +++ b/hall.scm @@ -0,0 +1,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" ()))))) -- cgit v1.2.3