From eb7a9cd459736f29c5d091cf1bf59842ec9c7175 Mon Sep 17 00:00:00 2001
From: Peter Eisentraut <peter@eisentraut.org>
Date: Wed, 6 Jul 2022 10:32:40 +0200
Subject: [PATCH] Tiny capitalization adjustment in pkg-config files

This makes the output match that produced by meson (and also matches
other packages and pkg-config's own documentation better).
---
 src/Makefile.shlib | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile.shlib b/src/Makefile.shlib
index d0ec325bf1..82b336fff3 100644
--- a/src/Makefile.shlib
+++ b/src/Makefile.shlib
@@ -396,7 +396,7 @@ endif # PORTNAME == cygwin || PORTNAME == win32
 	echo >>$@
 	echo 'Name: lib$(NAME)' >>$@
 	echo 'Description: PostgreSQL lib$(NAME) library' >>$@
-	echo 'Url: $(PACKAGE_URL)' >>$@
+	echo 'URL: $(PACKAGE_URL)' >>$@
 	echo 'Version: $(VERSION)' >>$@
 	echo 'Requires: ' >>$@
 	echo 'Requires.private: $(PKG_CONFIG_REQUIRES_PRIVATE)' >>$@