about summary refs log tree commit diff stats
path: root/chicanery.egg
blob: e959cb8739db601075a8bbe1569591fc4c74c824 (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
;; chicanery -*- scheme -*-

((synopsis "Subtly breaking scheme expectations.")
 (author "Case Duckworth")
 (version "0.3.0")
 (license "God Willing License")
 (category lang-exts)
 (dependencies r7rs utf8)
 (components
  (extension chicanery.base
             (source chicanery.base.scm)
             (types-file)               ; I don't know what this does ...
             (inline-file)
             (csc-options "-X" "r7rs" "-R" "r7rs"
                          "-X" "utf8" "-R" "utf8"))
  (extension chicanery.extras
             (source chicanery.extras.scm)
             (component-dependencies chicanery.base)
             (types-file)
             (inline-file))
  (extension chicanery
             (source chicanery.scm)
             (component-dependencies chicanery.base
                                     chicanery.extras)
             (types-file)
             (inline-file))))