forked from hmcgowan/parseexcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
usage-en.txt
112 lines (87 loc) · 2.75 KB
/
usage-en.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
Installing Programs with install.rb / setup.rb
==============================================
Overview
--------
Type these lines on command line:
("#" line may require root privilege)
$ ruby install.rb config
$ ruby install.rb setup
# ruby install.rb install
There's no difference in a usage between install.rb
and setup.rb.
$ ruby setup.rb config
$ ruby setup.rb setup
# ruby setup.rb install
Details
-------
Usage of install.rb/setup.rb is:
ruby install.rb <global options>
ruby install.rb [<global options>] <task> [<task options>]
-q,--quiet
suppress message outputs
--verbose
output messages verbosely (default)
-h,--help
prints help and quit
-v,--version
prints version and quit
--copyright
prints copyright and quit
These are acceptable tasks:
config
saves configurations
show
prints current configurations
setup
compiles extentions
install
installs files
clean
cleans created files
Task Options for Config
-----------------------
--prefix=PATH
a prefix of the installing directory path
--std-ruby=PATH
the directory for standard ruby libraries
--site-ruby-common=PATH
the directory for version-independent non-standard
ruby libraries
--site-ruby=PATH
the directory for non-standard ruby libraries
--bin-dir=PATH
the directory for commands
--rb-dir=PATH
the directory for ruby scripts
--so-dir=PATH
the directory for ruby extentions
--data-dir=PATH
the directory for shared data
--ruby-path=PATH
path to set to #! line
--ruby-prog=PATH
the ruby program using for installation
--make-prog=NAME
the make program to compile ruby extentions
--without-ext
forces to install.rb never to compile/install
ruby extentions.
--rbconfig=PATH
your rbconfig.rb to load
You can view default values of these options by typing
$ ruby install.rb --help
In addition, setup.rb accepts these options:
--with=NAME,NAME,NAME...
package names which you want to install
--without=NAME,NAME,NAME...
package names which you do not want to install
[NOTE] You can pass options for extconf.rb like this:
ruby install.rb config -- --with-tklib=/usr/lib/libtk-ja.so.8.0
Task Options for Install
------------------------
--no-harm
prints what to do and done nothing really.
--prefix=PATH
a prefix of the installing directory path.
This option may help binary package maintainers.
A default value is an empty string.