
Add a hook to `raco setup` to make copies of installed executables, where the copies start with the configuration or addon directory of creation time, instead of the default installation or user-specific path. Although the same effect can be achived by setting environment variables such as PLTADDONDIR, tethered executables can be easier to work with and compose better with other programs. See also #1206 for some discussion, although this change does not exactly address the original idea there.
42 lines
1.3 KiB
Racket
42 lines
1.3 KiB
Racket
#lang info
|
|
|
|
(define collection 'multi)
|
|
|
|
(define deps '("scheme-lib"
|
|
["base" #:version "6.5.0.2"]
|
|
"net-lib"
|
|
"sandbox-lib"
|
|
["scribble-lib" #:version "1.14"]
|
|
"racket-index"))
|
|
(define build-deps '("rackunit-doc"
|
|
"compatibility"
|
|
"errortrace-doc"
|
|
"typed-racket-doc"
|
|
"at-exp-lib"
|
|
"rackunit-lib"
|
|
"web-server-doc"
|
|
"gui"
|
|
"draw"
|
|
"pict"
|
|
"parser-tools-doc"
|
|
"slideshow-doc"
|
|
"r5rs-doc"
|
|
"r6rs-doc"
|
|
"xrepl"
|
|
"readline"
|
|
"syntax-color"
|
|
"scribble-doc"
|
|
"future-visualizer"
|
|
"distributed-places"
|
|
"serialize-cstruct-lib"
|
|
"cext-lib"
|
|
"data-doc"
|
|
"net-doc"
|
|
"planet-doc"
|
|
"mzscheme-doc"
|
|
"compiler-lib"))
|
|
|
|
(define pkg-desc "Base Racket documentation")
|
|
|
|
(define pkg-authors '(eli jay matthias mflatt robby ryanc samth))
|