From eb57f80e5160126a04a9c8df8ef1feff3534b78e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Kera=CC=88nen?= Date: Sun, 4 Aug 2019 10:41:25 +0300 Subject: [PATCH] Fixed|Builder: Missing package description file --- doomsday/build/description.txt | 6 ++++++ doomsday/cmake/Packaging.cmake | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 doomsday/build/description.txt diff --git a/doomsday/build/description.txt b/doomsday/build/description.txt new file mode 100644 index 0000000000..ce29d54c87 --- /dev/null +++ b/doomsday/build/description.txt @@ -0,0 +1,6 @@ +The Doomsday Engine is a portable version of the classic first person +shooters DOOM, Heretic, and Hexen. It lets you enjoy the original games +using modern technology, including high-resolution OpenGL graphics, 3D +models, and dynamic lighting effects. Data files from the original games +are not included; you must acquire a copy of the original games from +id Software and/or Raven Software. diff --git a/doomsday/cmake/Packaging.cmake b/doomsday/cmake/Packaging.cmake index ed2ed5a217..fee44ec5ab 100644 --- a/doomsday/cmake/Packaging.cmake +++ b/doomsday/cmake/Packaging.cmake @@ -6,7 +6,7 @@ set (CPACK_PACKAGE_VERSION_MAJOR ${DENG_VERSION_MAJOR}) set (CPACK_PACKAGE_VERSION_MINOR ${DENG_VERSION_MINOR}) set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Doom/Heretic/Hexen port with enhanced graphics") -set (CPACK_PACKAGE_DESCRIPTION_FILE ${DENG_SOURCE_DIR}/../distrib/description.txt) +set (CPACK_PACKAGE_DESCRIPTION_FILE ${DENG_SOURCE_DIR}/build/description.txt) set (CPACK_DEBIAN_PACKAGE_MAINTAINER "Jaakko Keränen (skyjake) ") set (CPACK_DEBIAN_PACKAGE_SECTION universe/games)