updated the doc for distribution location

svn: r163
This commit is contained in:
Jono Spiro 2004-08-09 18:23:32 +00:00
parent 2f46304b4e
commit f591002a7d
2 changed files with 28 additions and 28 deletions

View File

@ -108,9 +108,9 @@ confirm (or refute!) that they are working correctly.
Installing MzTake Installing MzTake
MzTake is a DrScheme tool distributed as a self-installing MzTake is a DrScheme tool distributed as a self-installing
".PLT" file from the PLaneT Package Repository. ".PLT" file from the following web site:
http://planet.plt-scheme.org/ http://www.cs.brown.edu/research/plt/software/mztake/
MzTake requires PLT Scheme v208 and higher. MzTake requires PLT Scheme v208 and higher.

View File

@ -1,27 +1,27 @@
(module make-plt mzscheme (module make-plt mzscheme
(require (lib "pack.ss" "setup") (require (lib "pack.ss" "setup")
(lib "util.ss" "planet")) #;(lib "util.ss" "planet"))
(define (my-filter path) (define (my-filter path)
(and (std-filter path) (and (std-filter path)
(not (or (regexp-match #rx".svn$" path) (not (or (regexp-match #rx".svn$" path)
(regexp-match #rx".bak$" path) (regexp-match #rx".bak$" path)
(regexp-match #rx".1$" path) (regexp-match #rx".1$" path)
(regexp-match #rx"make" path))))) (regexp-match #rx"make" path)))))
;For use with PLaneT ;For use with PLaneT
(parameterize ((current-directory ".")) #;(parameterize ((current-directory "."))
(pack "mztake-planet.plt" (pack "mztake-planet.plt"
"MzTake Debugger" "MzTake Debugger"
'(".") '(".")
'() '()
my-filter my-filter
#t #t
'file 'file
#f #f
#f #f
'(("frtime") ("stepper")))) '(("frtime") ("stepper"))))
; for use not on PLaneT ; for use not on PLaneT
(pack-collections "mztake-distro.plt" "MzTake Debugger" '(("mztake")) #t '(("frtime") ("stepper")) my-filter)) (pack-collections "mztake-distro.plt" "MzTake Debugger" '(("mztake")) #t '(("frtime") ("stepper")) my-filter))