Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-10-10 10:56:04 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-11-20 16:12:52 +0300
commit6b3006b32540847d16665a1cebf676a0d4b9e049 (patch)
tree8d1b0c833c9f107174791de9d5bfc4e20cf711c3 /NextcloudCPack.cmake
parent5dc73ffd8b901fb8e6f6ed484f68bbd2e1dad0d7 (diff)
OwnCloudCPack.cmake to NextcloudCPack.cmake
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'NextcloudCPack.cmake')
-rw-r--r--NextcloudCPack.cmake67
1 files changed, 67 insertions, 0 deletions
diff --git a/NextcloudCPack.cmake b/NextcloudCPack.cmake
new file mode 100644
index 000000000..0a506b945
--- /dev/null
+++ b/NextcloudCPack.cmake
@@ -0,0 +1,67 @@
+include( InstallRequiredSystemLibraries )
+
+set( CPACK_PACKAGE_CONTACT "Dominik Schmidt <domme@tomahawk-player.org>" )
+
+if ( DEFINED OEM_THEME_DIR AND EXISTS ${OEM_THEME_DIR}/OEM.cmake )
+ include ( "${OEM_THEME_DIR}/OEM.cmake" )
+else ()
+ include ( "${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake" )
+endif()
+
+include( VERSION.cmake )
+set( CPACK_PACKAGE_VERSION_MAJOR ${MIRALL_VERSION_MAJOR} )
+set( CPACK_PACKAGE_VERSION_MINOR ${MIRALL_VERSION_MINOR} )
+set( CPACK_PACKAGE_VERSION_PATCH ${MIRALL_VERSION_PATCH} )
+set( CPACK_PACKAGE_VERSION_BUILD ${MIRALL_VERSION_BUILD} )
+set( CPACK_PACKAGE_VERSION ${MIRALL_VERSION_FULL}${MIRALL_VERSION_SUFFIX} )
+
+if(APPLE)
+ set( CPACK_GENERATOR "DragNDrop" )
+ set( CPACK_SOURCE_GENERATOR "")
+ set( CPACK_PACKAGE_FILE_NAME ${APPLICATION_SHORTNAME}-${CPACK_PACKAGE_VERSION} )
+ set( CPACK_PACKAGE_ICON ${CMAKE_BINARY_DIR}/src/gui/ownCloud.icns)
+
+ set( CPACK_DMG_DS_STORE "${CMAKE_SOURCE_DIR}/admin/osx/DS_Store.in")
+# set( CPACK_DMG_BACKGROUND_IMAGE "${CMAKE_SOURCE_DIR}/admin/osx/DMGBackground.png" )
+
+ set( CPACK_DMG_FORMAT "UDBZ" )
+ set( CPACK_DMG_VOLUME_NAME "${APPLICATION_SHORTNAME}")
+
+ # did not work with cmake 2.8.7, so we override MacOSXBundleInfo.plist.in
+ #set( CPACK_BUNDLE_PLIST ${CMAKE_SOURCE_DIR}/admin/osx/Info.plist )
+
+ # do we need these?
+ #set( CPACK_SYSTEM_NAME "OSX" )
+ #set( CPACK_PACKAGE_NAME "FOO" )
+ #set( CPACK_BUNDLE_NAME "BAR" )
+endif()
+
+
+
+
+if(WIN32)
+ set( CPACK_PACKAGE_FILE_NAME ${APPLICATION_SHORTNAME}-${CPACK_PACKAGE_VERSION}-setup )
+ # Package file name without extension. Also a directory of installer cmake-2.5.0-Linux-i686
+ # CPACK_GENERATOR CPack generator to be used STGZ;TGZ;TZ
+ # CPACK_INCLUDE_TOPLEVEL_DIRECTORY Controls whether CPack adds a top-level directory, usually of the form ProjectName-Version-OS, to the top of package tree. 0 to disable, 1 to enable
+ # CPACK_INSTALL_CMAKE_PROJECTS List of four values: Build directory, Project Name, Project Component, Directory in the package /home/andy/vtk/CMake-bin;CMake;ALL;/
+ set( CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README.md" ) # File used as a description of a project /path/to/project/ReadMe.txt
+ set( CPACK_PACKAGE_DESCRIPTION_SUMMARY "${APPLICATION_NAME} Syncing Client" ) # Description summary of a project
+ # CPACK_PACKAGE_EXECUTABLES List of pairs of executables and labels. Used by the NSIS generator to create Start Menu shortcuts. ccmake;CMake
+ set( CPACK_PACKAGE_INSTALL_DIRECTORY ${APPLICATION_SHORTNAME} ) # Installation directory on the target system -> C:\Program Files\${APPLICATION_SHORTNAME}
+ set( CPACK_PACKAGE_INSTALL_REGISTRY_KEY ${APPLICATION_SHORTNAME} ) # Registry key used when installing this project CMake 2.5.0
+ set( CPACK_PACKAGE_NAME ${APPLICATION_NAME} ) # Package name, defaults to the project name
+ set( CPACK_PACKAGE_VENDOR "http://${APPLICATION_DOMAIN}" ) # Package vendor name
+endif()
+
+# set( CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/LICENSE.txt" ) # License file for the project, used by the STGZ, NSIS, and PackageMaker generators. /home/andy/vtk/CMake/Copyright.txt
+
+
+set( CPACK_TOPLEVEL_TAG "unused" ) # Directory for the installed files. - needed to provide anything to avoid an error# CPACK_INSTALL_COMMANDS Extra commands to install components.
+
+
+# Set the options file that needs to be included inside CMakeCPackOptions.cmake
+configure_file("${CMAKE_SOURCE_DIR}/CPackOptions.cmake.in"
+ "${CMAKE_BINARY_DIR}/CPackOptions.cmake" @ONLY)
+set(CPACK_PROJECT_CONFIG_FILE "${CMAKE_BINARY_DIR}/CPackOptions.cmake") # File included at cpack time, once per generator after setting CPACK_GENERATOR to the actual generator being used; allows per-generator setting of CPACK_* variables at cpack time. ${PROJECT_BINARY_DIR}/CPackOptions.cmake
+include(CPack)