-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
info.rkt
96 lines (91 loc) · 2.47 KB
/
info.rkt
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#lang info
(define collection 'multi)
(define deps '("2d"
"algol60"
"at-exp-lib"
"compatibility"
"contract-profile"
"compiler"
"data"
"datalog"
"db"
"deinprogramm"
"draw"
"draw-doc"
"draw-lib"
"drracket"
"drracket-tool"
"eopl"
"expeditor"
"errortrace"
"future-visualizer"
"future-visualizer-typed"
"frtime"
"games"
"gui"
"htdp"
"html"
"icons"
"images"
"lazy"
"macro-debugger"
"macro-debugger-text-lib"
"make"
"math"
"mysterx"
"mzcom"
"mzscheme"
"net"
"net-cookies"
"optimization-coach"
"option-contract"
"parser-tools"
"pconvert-lib"
"pict"
"pict-snip"
"picturing-programs"
"plai"
"planet"
"plot"
"preprocessor"
"profile"
"r5rs"
"r6rs"
"racket-doc"
"distributed-places"
"racket-cheat"
"racket-index"
"racket-lib"
"racklog"
"rackunit"
"rackunit-typed"
"readline"
"realm"
"redex"
"sandbox-lib"
"sasl"
"schemeunit"
"scribble"
"serialize-cstruct-lib"
"sgl"
"shell-completion"
"simple-tree-text-markup"
"slatex"
"slideshow"
"snip"
"srfi"
"string-constants"
"swindle"
"syntax-color"
"trace"
"typed-racket"
"typed-racket-more"
"unix-socket"
"web-server"
"wxme"
"xrepl"
"ds-store"))
(define pkg-desc "A package that combines all of the packages in the main Racket distribution")
(define pkg-authors '(eli jay matthias mflatt robby))
(define license
'(Apache-2.0 OR MIT))