diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-06-25 15:14:07 +0300 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-06-25 15:14:07 +0300 |
commit | 7a29678aac20ac9e113704f8a5743f6051edef8d (patch) | |
tree | 11c9583a66fa5fc1122e6d993b92dc7cd591e237 /src/index.c | |
parent | 3a488564753cee51832b6824128249a99eb4613b (diff) | |
download | apk-tools-7a29678aac20ac9e113704f8a5743f6051edef8d.tar.gz apk-tools-7a29678aac20ac9e113704f8a5743f6051edef8d.tar.bz2 apk-tools-7a29678aac20ac9e113704f8a5743f6051edef8d.tar.xz apk-tools-7a29678aac20ac9e113704f8a5743f6051edef8d.zip |
help: auto construct help
And add some more verbosity to the help message.
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/index.c b/src/index.c index 824d60e..960c42f 100644 --- a/src/index.c +++ b/src/index.c @@ -4,7 +4,7 @@ * Copyright (C) 2008 Timo Teräs <timo.teras@iki.fi> * All rights reserved. * - * This program is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. See http://www.gnu.org/ for details. */ @@ -113,13 +113,16 @@ static int index_main(void *ctx, int argc, char **argv) return 0; } -static struct option index_options[] = { - { "delete", required_argument, NULL, 'd' }, +static struct apk_option index_options[] = { + { 'd', "delete", + "Read existing INDEXFILE and delete the listed FILEs from it", + required_argument, "INDEXFILE" }, }; static struct apk_applet apk_index = { .name = "index", - .usage = "[-d|--delete INDEXFILE] FILE...", + .help = "Create repository index file from FILEs.", + .arguments = "FILE...", .context_size = sizeof(struct index_ctx), .num_options = ARRAY_SIZE(index_options), .options = index_options, |