From f7882f72153612f6f5dfdf48ee8e6bbed5fa8920 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 26 May 2011 10:54:48 +0200 Subject: [PATCH] xbps-{bin,repo}: parse three new objects in pkg props.plist: homepage, build_date and license. --- bin/xbps-bin/util.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/bin/xbps-bin/util.c b/bin/xbps-bin/util.c index 014b1763..d067f1e7 100644 --- a/bin/xbps-bin/util.c +++ b/bin/xbps-bin/util.c @@ -98,6 +98,24 @@ static const struct object_info obj_info[] = { .sep = NULL, .from_repo = false }, + { + .key = "homepage", + .descr = "Upstream URL:", + .sep = NULL, + .from_repo = false + }, + { + .key = "license", + .descr = "License(s):", + .sep = NULL, + .from_repo = false + }, + { + .key = "build_date", + .descr = "Package build date:", + .sep = NULL, + .from_repo = false + }, { .key = "preserve", .descr = "Preserve files",