Mercurial > hg > octave-lyh
comparison scripts/pkg/pkg.m @ 9307:c2923c27c877
Various documentation improvements
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Sat, 06 Jun 2009 18:30:52 -0700 |
parents | a653c61ee98c |
children | f22bbc5d56e9 |
comparison
equal
deleted
inserted
replaced
9306:de124edcebf6 | 9307:c2923c27c877 |
---|---|
27 ## Install named packages. For example, | 27 ## Install named packages. For example, |
28 ## @example | 28 ## @example |
29 ## pkg install image-1.0.0.tar.gz | 29 ## pkg install image-1.0.0.tar.gz |
30 ## @end example | 30 ## @end example |
31 ## @noindent | 31 ## @noindent |
32 ## installs the package found in the file @code{image-1.0.0.tar.gz}. | 32 ## installs the package found in the file @file{image-1.0.0.tar.gz}. |
33 ## | 33 ## |
34 ## The @var{option} variable can contain options that affect the manner | 34 ## The @var{option} variable can contain options that affect the manner |
35 ## in which a package is installed. These options can be one or more of | 35 ## in which a package is installed. These options can be one or more of |
36 ## | 36 ## |
37 ## @table @code | 37 ## @table @code |
128 ## Set the installation prefix directory. For example, | 128 ## Set the installation prefix directory. For example, |
129 ## @example | 129 ## @example |
130 ## pkg prefix ~/my_octave_packages | 130 ## pkg prefix ~/my_octave_packages |
131 ## @end example | 131 ## @end example |
132 ## @noindent | 132 ## @noindent |
133 ## sets the installation prefix to @code{~/my_octave_packages}. | 133 ## sets the installation prefix to @file{~/my_octave_packages}. |
134 ## Packages will be installed in this directory. | 134 ## Packages will be installed in this directory. |
135 ## | 135 ## |
136 ## It is possible to get the current installation prefix by requesting an | 136 ## It is possible to get the current installation prefix by requesting an |
137 ## output argument. For example, | 137 ## output argument. For example, |
138 ## @example | 138 ## @example |