From d3bdb305d05c3c32d5aab1488e4f1c1d50946cbd Mon Sep 17 00:00:00 2001 From: Christian Burger Date: Thu, 21 Apr 2022 10:28:45 +0200 Subject: [PATCH] fixes issue with wrong description in DEB package * added homepage URL as well --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e9e21c8..098d182 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,7 +41,8 @@ install(TARGETS NCursesPtyWindow ARCHIVE PUBLIC_HEADER) set(CPACK_PROJECT_NAME ${PROJECT_NAME}) set(CPACK_PROJECT_VERSION ${PROJECT_VERSION}) set(CPACK_PACKAGE_CONTACT "Christian Burger ") -set(CPACK_PACKAGE_DESCRIPTION "Library for a pseudo terminal where the host end is a ncurses window") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Library for a pseudo terminal where the host end is a ncurses window") +set(CPACK_PACKAGE_HOMEPAGE_URL "https://gitea.xndr.de/christian/NCursesPtyWindow") set(CPACK_GENERATOR "DEB" "TGZ") set(CPACK_DEBIAN_PACKAGE_DEPENDS "libncursesw6 (>=6.2), libvterm-dev (>= 0.1.2)")