-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathinfo.rkt
38 lines (31 loc) · 1020 Bytes
/
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
#lang info
(define collection "games")
(define scribblings '(("scribblings/games.scrbl" (multi-page) (gui-library))))
(define gracket-launcher-libraries (list "main.rkt"))
(define gracket-launcher-names (list "PLT Games"))
(define deps '("base"
"draw-lib"
"drracket"
("gui-lib" #:version "1.16")
"net-lib"
"htdp-lib"
"math-lib"
"scribble-lib"
"racket-index"
"sgl"
"srfi-lib"
"string-constants-lib"
("data-enumerate-lib" #:version "1.2")
"typed-racket-lib"
"typed-racket-more"))
(define build-deps '("draw-doc"
"gui-doc"
"racket-doc"
"pict-lib"
"rackunit-lib"
"htdp-doc"))
(define pkg-desc "Games")
(define pkg-authors '(mflatt robby))
(define version "1.1")
(define license
'(Apache-2.0 OR MIT))