ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages

 

This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles.

For more information about the manual page format, see the manual page for manpages(5).



pkg::create(n)                              Tcl Built-In Commands                             pkg::create(n)



____________________________________________________________________________________________________________

NAME
       pkg::create - Construct an appropriate package ifneeded command for a given package specification

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  con-struct construct
       struct a pkgIndex.tcl file for use with the package mechanism.


OPTIONS
       The parameters supported are:

       -name packageName
              This parameter specifies the name of the package.  It is required.

       -version packageVersion
              This parameter specifies the version of the package.  It is required.

       -load filespec
              This parameter specifies a binary library that must be loaded with the load command.  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 proce-dures procedures
              dures is empty or omitted, ::pkg::create will set up  the  library  for  direct  loading  (see
              pkg_mkIndex).  Any number of -load parameters may be specified.

       -source filespec
              This  parameter is similar to the -load parameter, except that it specifies a Tcl library that
              must be loaded with the source command.  Any number of -source parameters may be specified.

       At least one -load or -source parameter must be given.


SEE ALSO
       package(n)


KEYWORDS
       auto-load, index, package, version



Tcl                                                  8.3                                      pkg::create(n)

Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.