diff options
Diffstat (limited to 'boudin.egg')
-rw-r--r-- | boudin.egg | 49 |
1 files changed, 37 insertions, 12 deletions
diff --git a/boudin.egg b/boudin.egg index cc163ed..e9ca2dc 100644 --- a/boudin.egg +++ b/boudin.egg | |||
@@ -1,17 +1,42 @@ | |||
1 | ;; boudin -*- scheme | 1 | ;;; boudin -*- scheme -*- |
2 | 2 | ||
3 | ((synopsis "A small static site generator.") | 3 | ((synopsis "A small tasty ssg.") |
4 | (author "Case Duckworth") | 4 | (author "Case Duckworth") |
5 | (version "12044") | 5 | (version "0.0.0") |
6 | (license "God Willing License") | 6 | (license "God Willing License") |
7 | (category fluff) | 7 | |
8 | (dependencies chicanery | 8 | (dependencies chicanery r7rs utf8 |
9 | atom | ||
10 | html-parser | 9 | html-parser |
11 | scss | 10 | srfi-152) |
12 | srfi-37 | 11 | |
13 | srfi-152 | 12 | (component-options |
14 | sxml-serializer | 13 | (csc-options "-X" "r7rs" "-R" "r7rs" |
15 | sxpath) | 14 | "-X" "utf8" "-R" "utf8" |
15 | "-no-warnings")) | ||
16 | |||
16 | (components | 17 | (components |
17 | (program boudin))) | 18 | (program boudin |
19 | (component-dependencies boudin-lib)) | ||
20 | |||
21 | (extension boudin-lib | ||
22 | (source boudin.sld) | ||
23 | (modules boudin) | ||
24 | (install-name boudin) | ||
25 | (component-dependencies boudin.schmaltz)) | ||
26 | |||
27 | (extension boudin.config | ||
28 | (source lib/config.sld) | ||
29 | (component-dependencies boudin.schmaltz)) | ||
30 | |||
31 | (extension boudin.schmaltz | ||
32 | (source lib/schmaltz.sld) | ||
33 | (source-dependencies lib/schmaltz.sls)) | ||
34 | |||
35 | (extension boudin.types | ||
36 | (source lib/types.sld) | ||
37 | (source-dependencies lib/types.sls) | ||
38 | (component-dependencies boudin.config | ||
39 | boudin.util)) | ||
40 | |||
41 | (extension boudin.util | ||
42 | (source lib/util.sld)))) | ||