about summary refs log tree commit diff stats
path: root/schmaltz.egg
diff options
context:
space:
mode:
authorCase Duckworth2023-08-27 22:22:52 -0500
committerCase Duckworth2023-08-27 22:22:52 -0500
commit45c15fe30496311e60dba14399a0676fe084ad56 (patch)
treede31aab354afa968659d3c6fab1e7eb274f903e0 /schmaltz.egg
downloadschmaltz-45c15fe30496311e60dba14399a0676fe084ad56.tar.gz
schmaltz-45c15fe30496311e60dba14399a0676fe084ad56.zip
Initial commit
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))))