about summary refs log tree commit diff stats
path: root/schmaltz.egg
diff options
context:
space:
mode:
Diffstat (limited to 'schmaltz.egg')
-rw-r--r--schmaltz.egg24
1 files changed, 24 insertions, 0 deletions
diff --git a/schmaltz.egg b/schmaltz.egg new file mode 100644 index 0000000..7576ccb --- /dev/null +++ b/schmaltz.egg
@@ -0,0 +1,24 @@
1;;; (schmaltz) --- render CHICKEN in texts
2
3((synopsis "Render scheme form in texts.")
4 (author "Case Duckworth")
5 (version "0.1.0")
6 (license "God Willing License")
7
8 (dependencies r7rs utf8 srfi-1)
9
10 (component-options
11 (csc-options -X r7rs -R r7rs
12 -X utf8 -R utf8
13 -no-warnings))
14
15 (components
16 (program schmaltz
17 (source schmaltz.scm)
18 (component-dependencies schmaltz-lib))
19
20 (extension schmaltz-lib
21 (source schmaltz.sld)
22 (modules schmaltz)
23 (install-name schmaltz)
24 (source-dependencies schmaltz.sls))))