about summary refs log tree commit diff stats
path: root/chicanery.egg
diff options
context:
space:
mode:
Diffstat (limited to 'chicanery.egg')
-rw-r--r--chicanery.egg20
1 files changed, 15 insertions, 5 deletions
diff --git a/chicanery.egg b/chicanery.egg index 21cb68e..e959cb8 100644 --- a/chicanery.egg +++ b/chicanery.egg
@@ -2,15 +2,25 @@
2 2
3((synopsis "Subtly breaking scheme expectations.") 3((synopsis "Subtly breaking scheme expectations.")
4 (author "Case Duckworth") 4 (author "Case Duckworth")
5 (version "0.2.0") 5 (version "0.3.0")
6 (license "God Willing License") 6 (license "God Willing License")
7 (category lang-exts) 7 (category lang-exts)
8 (dependencies r7rs utf8) 8 (dependencies r7rs utf8)
9 (components 9 (components
10 (extension chicanery 10 (extension chicanery.base
11 (source chicanery.sld) 11 (source chicanery.base.scm)
12 (types-file) ; I don't know what this does ... 12 (types-file) ; I don't know what this does ...
13 (inline-file) 13 (inline-file)
14 (csc-options "-X" "r7rs" "-R" "r7rs" 14 (csc-options "-X" "r7rs" "-R" "r7rs"
15 "-X" "utf8" "-R" "utf8" 15 "-X" "utf8" "-R" "utf8"))
16 "-no-warnings")))) 16 (extension chicanery.extras
17 (source chicanery.extras.scm)
18 (component-dependencies chicanery.base)
19 (types-file)
20 (inline-file))
21 (extension chicanery
22 (source chicanery.scm)
23 (component-dependencies chicanery.base
24 chicanery.extras)
25 (types-file)
26 (inline-file))))