diff options
author | Eric Bélanger <snowmaniscool@gmail.com> | 2013-04-29 03:49:01 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-04-30 13:01:38 +0200 |
commit | 91b9ea922ae3db12cbff570718709d4c836c4cbf (patch) | |
tree | d087df3a689c6ceac26e30438fe27f73f3da25da | |
parent | c5a4b35528452855d125cea749fcc4a3a01fca9b (diff) | |
download | pacman-91b9ea922ae3db12cbff570718709d4c836c4cbf.tar.gz pacman-91b9ea922ae3db12cbff570718709d4c836c4cbf.tar.xz |
Add -V/--version option to makepkg's usage function and man page
Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | doc/makepkg.8.txt | 3 | ||||
-rw-r--r-- | scripts/makepkg.sh.in | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/makepkg.8.txt b/doc/makepkg.8.txt index ecee63a1..bb7a9a3f 100644 --- a/doc/makepkg.8.txt +++ b/doc/makepkg.8.txt @@ -144,6 +144,9 @@ Options remote builder, or a tarball upload. Because integrity checks are verified, all source files of the package need to be present or downloadable. +*-V, \--version*:: + Display version information. + *\--allsource*:: Do not actually build the package, but build a source-only tarball that includes all sources, including those that are normally download via diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index deddade4..75ddfe54 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -2497,6 +2497,7 @@ usage() { printf -- "$(gettext " -R, --repackage Repackage contents of the package without rebuilding")\n" printf -- "$(gettext " -s, --syncdeps Install missing dependencies with %s")\n" "pacman" printf -- "$(gettext " -S, --source Generate a source-only tarball without downloaded sources")\n" + printf -- "$(gettext " -V, --version Show version information and exit")\n" printf -- "$(gettext " --allsource Generate a source-only tarball including downloaded sources")\n" printf -- "$(gettext " --verifysource Download source files (if needed) and perform integrity checks")\n" printf -- "$(gettext " --asroot Allow %s to run as root user")\n" "makepkg" |