add pkg-desc' and pkg-authors' to each package

This information will be used to construct a catalog from the
package directories.

original commit: 057bfc2ea1a24e85ece2d5f85da30076643ea598
This commit is contained in:
Matthew Flatt 2013-07-30 17:50:52 -06:00
parent 3cc0645878
commit 4644c7373d
5 changed files with 20 additions and 0 deletions

View File

@ -16,3 +16,7 @@
"slideshow-lib"
"scribble-lib"
"racket-doc"))
(define pkg-desc "documentation part of \"scribble\"")
(define pkg-authors '(mflatt eli))

View File

@ -12,3 +12,7 @@
"syntax-color-lib"
"sandbox-lib"
"rackunit-lib"))
(define pkg-desc "implementation (no documentation) part of \"scribble\"")
(define pkg-authors '(mflatt eli))

View File

@ -10,3 +10,7 @@
"scribble-doc" ;; because some tests are examples from the docs
"scribble-lib"
"scribble-text-lib"))
(define pkg-desc "tests for \"scribble\"")
(define pkg-authors '(mflatt eli))

View File

@ -3,3 +3,7 @@
(define collection 'multi)
(define deps '("base" "at-exp-lib"))
(define pkg-desc "Language for text with embedded Racket code")
(define pkg-authors '(mflatt eli))

View File

@ -6,3 +6,7 @@
"scribble-doc"))
(define implies '("scribble-lib"
"scribble-doc"))
(define pkg-desc "Racket documentatation and typesetting tool")
(define pkg-authors '(mflatt eli))