/usr/share/racket/pkgs/games/info.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 25 26 27 28 29 30 | #lang info
(define collection "games")
(define scribblings '(("scribblings/games.scrbl" (multi-page) (gui-library))))
(define gracket-launcher-libraries (list "main.rkt"))
(define gracket-launcher-names (list "PLT Games"))
(define deps '("base"
"draw-lib"
"drracket"
"gui-lib"
"net-lib"
"htdp-lib"
"math-lib"
"scribble-lib"
"racket-index"
"sgl"
"srfi-lib"
"string-constants-lib"))
(define build-deps '("draw-doc"
"gui-doc"
"racket-doc"
"pict-lib"
"rackunit-lib"
"htdp-doc"))
(define pkg-desc "Games")
(define pkg-authors '(mflatt robby))
|