-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinfo.rkt
27 lines (26 loc) · 926 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
#lang info
(define collection "sauron")
(define deps
'("base" "gui-lib"
"net-lib"
"data-lib"
"drracket-plugin-lib"
"drracket-tool-lib"
"file-watchers"
"raco-invoke"
; syntax
"try-catch-finally-lib"
"curly-fn-lib"
; bundle
"from-template"
"drcomplete"))
(define build-deps '("scribble-lib" "racket-doc" "rackunit-lib" "gui-doc"))
(define scribblings '(("scribblings/sauron.scrbl" (multi-page) ("DrRacket Plugins"))))
(define pkg-desc "A Racket IDE")
(define version "1.4.1")
(define license '(Apache-2.0 OR MIT))
(define pkg-authors '(dannypsnl))
(define drracket-tools
'(("tool/bind-key.rkt") ("tool/frame.rkt") ("tool/editor.rkt") ("tool/repl.rkt")))
(define drracket-tool-names '("sauron:keyword" "sauron:unit" "sauron:editor" "sauron:repl"))
(define drracket-tool-icons '(#f #f #f #f))