forked from dyoo/moby-scheme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
info.ss
30 lines (22 loc) · 1.03 KB
/
info.ss
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
27
28
29
30
#lang setup/infotab
(define name "The Moby Scheme Compiler")
;; Temporarily disabling the command-line launcher.
#;(define mred-launcher-libraries (list "src/moby.ss"))
#;(define mred-launcher-names (list "moby"))
(define requires (list (list "mred")))
(define required-core-version "4.2")
(define tools (list (list "src/tool.ss")))
(define compile-omit-paths (list "doc"
"examples"
"sandbox"
"stub"
"support"
"tmp"))
(define categories '(devtools))
(define repositories '("4.x"))
(define primary-file "moby-lang.ss")
(define scribblings
'(("manual.scrbl" ())))
(define blurb '("Provides a compiler from Advanced Student Language+world to Javascript "
"for both web browsers and mobile smartphones."))
(define release-notes '("Fixes to issues with NaN. Fixed error where warnings were not showing up with location information. Fixed definition of eq? on functions."))