-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathinfo.rkt
48 lines (41 loc) · 1.63 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
#lang info
;;; This file describes the contents of the Urlang package.
;;; The information is used by the Racket package system.
;;; The Urlang package contains multiple collections (urlang, urlang-doc, compiler etc)
(define collection 'multi)
;;; Version number
(define version "1.0")
(define deps '("base"
"html-parsing"
"html-writing"
"nanopass"
"net-lib"
"rackunit-lib"
"scribble-html-lib"
"scribble-text-lib"
"srfi-lite-lib"
"web-server-lib"))
(define build-deps '("base"
"nanopass"
"at-exp-lib"
"rackunit-lib"
"scribble-lib"
"racket-doc"
"html-writing"
"html-parsing"))
(define compile-omit-paths (list "compiler-test"
; ad hoc files
"urlang/html/tag-comparison.rkt"
"urlang/tmp/"
"urlang/urlang/tmp/"))
(define test-omit-paths (list
"compiler-rjs"
"compiler-test"
"urlang-examples"
"urlang-test"
"urlang"
"README.md"
; these are not commited to Github:
"old"
"untracked-experiments"
"urlang-compiler-examples"))