Home › Tcl Built-In Commands Tcl
pkg::create
Construct an appropriate 'package ifneeded' command for a given package specification
literal type exactly as shown
argument replace with your value
?optional? may be omitted
Synopsis#
::pkg::create -name packageName -version packageVersion ?-load filespec? ... ?-source filespec? ...
Description#
::pkg::create is a utility procedure that is part of the standard Tcl library. It is used to create an appropriate package ifneeded command for a given package specification. It can be used to construct a pkgIndex.tcl file for use with the package mechanism.
Options#
The parameters supported are:
-namepackageName#-
This parameter specifies the name of the package. It is required.
-versionpackageVersion#-
This parameter specifies the version of the package. It is required.
-loadfilespec#-
This parameter specifies a library that must be loaded with the
loadcommand. filespec is a list with two elements. The first element is the name of the file to load. The second, optional element is a list of commands supplied by loading that file. If the list of procedures is empty or omitted,::pkg::createwill set up the library for direct loading (seepkg_mkIndex). Any number of-loadparameters may be specified. -sourcefilespec#-
This parameter is similar to the
-loadparameter, except that it specifies a Tcl library that must be loaded with thesourcecommand. Any number of-sourceparameters may be specified.At least one
-loador-sourceparameter must be given.
Keywords#
auto-load · index · package · version
Copyright#
- Copyright © 1998-2000 Scriptics Corporation