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 2d3a402e26
commit d5fe4f2f90
5 changed files with 20 additions and 0 deletions

View File

@ -13,3 +13,7 @@
"typed-racket-lib"
"racket-doc"))
(define deps '("base"))
(define pkg-desc "documentation part of \"typed-racket\"")
(define pkg-authors '(samth stamourv))

View File

@ -10,3 +10,7 @@
"compatibility-lib" ;; to assign types
"string-constants-lib"))
(define pkg-desc "implementation (no documentation) part of \"typed-racket\"")
(define pkg-authors '(samth stamourv))

View File

@ -9,3 +9,7 @@
"typed-racket-lib"
"gui-lib"))
(define build-deps '("scribble-lib"))
(define pkg-desc "Types for various libraries")
(define pkg-authors '(samth stamourv))

View File

@ -10,3 +10,7 @@
"sandbox-lib"
"unstable-flonum-lib"
"unstable"))
(define pkg-desc "tests for \"typed-racket\"")
(define pkg-authors '(samth stamourv))

View File

@ -6,3 +6,7 @@
"typed-racket-doc"))
(define implies '("typed-racket-lib"
"typed-racket-doc"))
(define pkg-desc "The implementation of the Typed Racket language")
(define pkg-authors '(samth stamourv))