about summary refs log tree commit diff stats
path: root/schmaltz.egg
blob: 7576ccb9ce92465683735dc33d7b1af8f7e69567 (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
;;; (schmaltz) --- render CHICKEN in texts

((synopsis "Render scheme form in texts.")
 (author "Case Duckworth")
 (version "0.1.0")
 (license "God Willing License")

 (dependencies r7rs utf8 srfi-1)

 (component-options
  (csc-options -X r7rs -R r7rs
               -X utf8 -R utf8
               -no-warnings))

 (components
  (program schmaltz
           (source schmaltz.scm)
           (component-dependencies schmaltz-lib))

  (extension schmaltz-lib
             (source schmaltz.sld)
             (modules schmaltz)
             (install-name schmaltz)
             (source-dependencies schmaltz.sls))))