blob: 635a4bceb9699740bea4fedcb2cd40f89b9ef6ab (
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 forms in texts.")
(author "Case Duckworth")
(version "0.1.0")
(license "God Willing License")
(dependencies r7rs utf8 srfi-1 html-parser)
(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))))
|