37 lines
1.9 KiB
CMake
37 lines
1.9 KiB
CMake
# RPM specifics
|
|
if(CPACK_GENERATOR MATCHES "RPM")
|
|
set(CPACK_PACKAGING_INSTALL_PREFIX "/")
|
|
if(GENERATE_EL6)
|
|
set(CPACK_COMPONENTS_ALL clients-el6 server-el6)
|
|
else()
|
|
set(CPACK_COMPONENTS_ALL clients-el7 server-el7)
|
|
endif()
|
|
set(CPACK_RESOURCE_FILE_README ${CMAKE_SOURCE_DIR}/README.md)
|
|
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/LICENSE)
|
|
elseif(CPACK_GENERATOR MATCHES "DEB")
|
|
set(CPACK_PACKAGING_INSTALL_PREFIX "/")
|
|
set(CPACK_COMPONENTS_ALL clients-deb server-deb)
|
|
set(CPACK_RESOURCE_FILE_README ${CMAKE_SOURCE_DIR}/README.md)
|
|
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/LICENSE)
|
|
elseif(CPACK_GENERATOR MATCHES "productbuild")
|
|
set(CPACK_PACKAGING_INSTALL_PREFIX "/")
|
|
set(CPACK_COMPONENTS_ALL clients-pm server-pm)
|
|
set(CPACK_STRIP_FILES TRUE)
|
|
set(CPACK_PREFLIGHT_SERVER_SCRIPT ${CMAKE_SOURCE_DIR}/packaging/osx/scripts-server/preinstall)
|
|
set(CPACK_POSTFLIGHT_SERVER_SCRIPT ${CMAKE_SOURCE_DIR}/packaging/osx/scripts-server/postinstall)
|
|
set(CPACK_POSTFLIGHT_CLIENTS_SCRIPT ${CMAKE_SOURCE_DIR}/packaging/osx/scripts-server/preinstall)
|
|
# Commenting out this readme file until it works within packaging
|
|
set(CPACK_RESOURCE_FILE_README ${CMAKE_SOURCE_DIR}/packaging/osx/resources/conclusion.rtf)
|
|
set(CPACK_PRODUCTBUILD_RESOURCES_DIR ${CMAKE_SOURCE_DIR}/packaging/osx/resources)
|
|
# Changing the path of this file as CMAKE_BINARY_DIR does not seem to be defined
|
|
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_BINARY_DIR}/License.txt)
|
|
set(CPACK_PACKAGE_FILE_NAME "foundationdb-${PROJECT_VERSION}.${CURRENT_GIT_VERSION}${prerelease_string}")
|
|
elseif(CPACK_GENERATOR MATCHES "TGZ")
|
|
set(CPACK_STRIP_FILES TRUE)
|
|
set(CPACK_COMPONENTS_ALL clients-tgz server-tgz)
|
|
set(CPACK_RESOURCE_FILE_README ${CMAKE_SOURCE_DIR}/README.md)
|
|
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/LICENSE)
|
|
else()
|
|
message(FATAL_ERROR "Unsupported package format ${CPACK_GENERATOR}")
|
|
endif()
|