summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey V. Lobanov <sergey@lobanov.in>2023-07-17 22:01:39 +0200
committerSergey V. Lobanov <sergey@lobanov.in>2023-07-17 22:01:39 +0200
commite6f5023e2ab85fa6bba442527cc6312d95cc1412 (patch)
treec51c9a11c8b628406ce5ac71000c0415dd3c113d
parent7b7b6dabfd83eafc62555e0edc6147ebca270ac4 (diff)
downloadaccel-ppp-e6f5023e2ab85fa6bba442527cc6312d95cc1412.tar.gz
accel-ppp-e6f5023e2ab85fa6bba442527cc6312d95cc1412.zip
build: add deb packaging support for Debian 13
Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
-rw-r--r--cmake/cpack.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/cpack.cmake b/cmake/cpack.cmake
index 3c4af72d..30d7f4d1 100644
--- a/cmake/cpack.cmake
+++ b/cmake/cpack.cmake
@@ -60,6 +60,11 @@ IF(CPACK_TYPE STREQUAL Debian12)
INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake)
ENDIF(CPACK_TYPE STREQUAL Debian12)
+IF(CPACK_TYPE STREQUAL Debian13)
+ SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.37), libssl3 (>= 3.0.9), libpcre3 (>= 8.39)")
+ INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake)
+ENDIF(CPACK_TYPE STREQUAL Debian13)
+
IF(CPACK_TYPE STREQUAL Ubuntu16)
SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.23), libssl1.0.0 (>= 1.0.0), libpcre3 (>= 8.39)")
INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake)