diff options
-rw-r--r-- | README.pod | 2 | ||||
-rw-r--r-- | expac.c | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -108,6 +108,8 @@ The format argument allows the following interpreted sequences: %g base64 encoded PGP signature (only with -S) + %h sha256sum + %i has install scriptlet (only with -Q) %k download size (only with -S) @@ -37,7 +37,7 @@ #define DEFAULT_DELIM "\n" #define DEFAULT_LISTDELIM " " #define DEFAULT_TIMEFMT "%c" -#define FORMAT_TOKENS "BCDEGLNOPRSabdmnprsuvw%" +#define FORMAT_TOKENS "BCDEGLNOPRSabdhmnprsuvw%" #define FORMAT_TOKENS_LOCAL "ilFw" #define FORMAT_TOKENS_SYNC "fgk" #define ESCAPE_TOKENS "\"\\abefnrtv" @@ -424,6 +424,9 @@ static int print_pkg(alpm_pkg_t *pkg, const char *format) { case 'g': /* base64 gpg sig */ out += printf(fmt, alpm_pkg_get_base64_sig(pkg)); break; + case 'h': /* sha256sum */ + out += printf(fmt, alpm_pkg_get_sha256sum(pkg)); + break; /* times */ case 'b': /* build date */ |