From 32cc986bf2306ffeb0f5dfc00dfe942710f9dd78 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Tue, 24 Nov 2015 21:50:40 +0100 Subject: [PATCH] Use automatic dependency recognition when creating .deb packages --- CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f915837..1f9125e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,9 +47,7 @@ ELSE(WIN32 AND NOT UNIX) ENDIF(WIN32 AND NOT UNIX) SET(CPACK_PACKAGE_EXECUTABLES "cryfs" "CryFS") SET(CPACK_DEBIAN_PACKAGE_SECTION "utils") -SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libcurl3 (>= 7.22.0-3), libfuse2 (>= 2.7.4-1)") # TODO Use correct minimal versions -#SET(CPACK_RPM_PACKAGE_REQUIRES "libfuse (>= 2.7.4-1)") # TODO Use correct minimal fuse version -#SET(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) # TODO Use this instead of manual dependency definition +SET(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) SET(CPACK_DEBIAN_PACKAGE_HOMEPAGE "http://cryfs.org") SET(CPACK_RPM_PACKAGE_LICENSE "LGPLv3")