split "scribble-html-lib" package out of "scribble-lib" package

original commit: 0ad3a6a7f6c897b4fe7d3d2dfdceb3a8831e293a
This commit is contained in:
Matthew Flatt 2014-02-06 09:19:08 -07:00
parent e7adecfd59
commit 19ea3a7194
11 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
scribble-text-lib
Copyright (c) 2010-2014 PLT Design Inc.
This package is distributed under the GNU Lesser General Public
License (LGPL). This means that you can link Racket into proprietary
applications, provided you follow the rules stated in the LGPL. You
can also modify this package; if you distribute a modified version,
you must distribute it under the terms of the LGPL, which in
particular means that you must release the source code for the
modified software. See COPYING_LESSER.txt for more information.

View File

@ -0,0 +1,11 @@
#lang info
(define collection 'multi)
(define deps '("scheme-lib"
"base" "at-exp-lib"
"scribble-text-lib"))
(define pkg-desc "Language for HTML with embedded Racket code")
(define pkg-authors '(mflatt eli))

View File

@ -7,6 +7,7 @@
"base"
"compatibility-lib"
"scribble-text-lib"
"scribble-html-lib"
"planet-lib" ; used dynamically
"net-lib"
"at-exp-lib"
@ -15,6 +16,8 @@
"sandbox-lib"))
(define build-deps '("rackunit-lib"))
(define implies '("scribble-html-lib"))
(define pkg-desc "implementation (no documentation) part of \"scribble\"")
(define pkg-authors '(mflatt eli))