diff options
author | J Pipkin <j@dawnrazor.net> | 2012-09-09 10:19:25 -0500 |
---|---|---|
committer | J Pipkin <j@dawnrazor.net> | 2012-09-09 10:19:25 -0500 |
commit | 22b80d8ef18a02e21562aca979d1c30d659a35fb (patch) | |
tree | 07a6921dfcd45b2e9ed878d1087df55d7659c3a0 | |
parent | 84024a825a143ca291177b1b14bdacc15e45fe7c (diff) | |
download | sbotools2-22b80d8ef18a02e21562aca979d1c30d659a35fb.tar.xz |
sboinstall converted back to old parameters
-rwxr-xr-x | sboinstall | 35 |
1 files changed, 22 insertions, 13 deletions
@@ -23,15 +23,24 @@ sub show_usage () { Usage: $self [options] sbo Options: - -h: this screen. - -v: version information. - -c: do not clean working files/directories after the build. - -d: clean distfiles afterward. - -i: non-interactive; skips README and all prompts. - -j: specify "-j" setting to make, for multicore systems; overrides conf file. - -n: do not run installpkg at the end of the build process. - -p: install an SBo as a -compat32 pkg on a multilib x86_64 system. - -R: view the README but do not parse requirements, commands, or options. + -h|--help: + this screen. + -v|--version: + version information. + -c|--(no)clean: + set whether or not to clean working files/directories after the build. + -d|--(no)distclean: + set whether or not to clean distfiles afterward. + -i|--noinstall: + do not run installpkg at the end of the build process. + -j|--jobs: + specify "-j" setting to make, for multicore systems; overrides conf file. + -p|--compat32: + install an SBo as a -compat32 pkg on a multilib x86_64 system. + -r|--nointeractive: + non-interactive; skips README and all prompts. + -R|--norequirements: + view the README but do not parse requirements, commands, or options. EOF } @@ -46,11 +55,11 @@ GetOptions ( 'version|v' => \$vers, 'clean|c!' => \$clean, 'distclean|d!' => \$distclean, - 'noinstall|n' => \$no_install, - 'nointeractive|i' => \$non_int, - 'norequirements|R' => \$no_reqs, - 'compat32|p' => \$compat32, + 'noinstall|i' => \$no_install, 'jobs|j=s' => \$jobs, + 'compat32|p' => \$compat32, + 'nointeractive|r' => \$non_int, + 'norequirements|R' => \$no_reqs, ); show_usage and exit 0 if $help; |