/usr/share/racket/pkgs/frtime/develop-frtime.rkt is in racket-common 6.1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #lang racket/base
(require setup/link)
#|Update this to point to your racket installation directory|#
(define install-path "C:/Program Files/Racket/collects/frtime")
#|Update this to point to your github clone|#
(define dev-path "C:/Users/user/Documents/GitHub/racket/collects/frtime")
#|Then call one of these functions to begin developing frtime, or to halt development.|#
(define (start-developing-frtime)
(start-developing-collection dev-path install-path))
(define (stop-developing-frtime)
(stop-developing-collection dev-path install-path))
(define (start-developing-collection dev-coll-path install-coll-path)
(links install-coll-path #:remove? #t)
(links dev-coll-path))
(define (stop-developing-collection dev-coll-path install-coll-path)
(start-developing-collection install-coll-path dev-coll-path))
|