/usr/share/racket/pkgs/plai/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 | #lang info
(define collection "plai")
(define blurb '("Language levels for the Programming Languages: Application and Interpretation textbook"))
(define homepage "http://www.cs.brown.edu/~sk/Publications/Books/ProgLangs/")
(define primary-file "main.rkt")
(define scribblings '(("scribblings/plai.scrbl" (multi-page) (teaching -20))))
(define release-note-files (list (list "PLAI" "HISTORY.txt")))
(define deps '("scheme-lib"
"srfi-lite-lib"
"base"
"gui-lib"
"sandbox-lib"
"web-server-lib"))
(define build-deps '("at-exp-lib"
"eli-tester"
"pconvert-lib"
"rackunit-lib"
"racket-doc"
"web-server-doc"
"scribble-lib"))
(define pkg-desc "Teaching languages for _Programming Languages: Application and Interpretation_")
(define pkg-authors '(jay))
|