# Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, # 2015, 2016, 2017, 2018 # University Corporation for Atmospheric Research/Unidata. # See netcdf-c/COPYRIGHT file for more info. ##### # Contains variables and settings used # by the CMake build system in order to # build binary installers. ##### set(CPACK_PACKAGE_VENDOR "Unidata") ## # Declare exclusions list used when building a source file. # NOTE!! This list uses regular expressions, NOT wildcards!! ## set(CPACK_SOURCE_IGNORE_FILES "${CPACK_SOURCE_IGNORE_FILES}" "/expecttds3/" "/nocacheremote3/" "/nocacheremote4/" "/special3/" "${CMAKE_BINARY_DIR}/*" "/myhtml/*" "/.svn/" "my.*\\\\.sh" "/.deps/" "/.libs" "/html/" ".*\\\\.jar" ".*\\\\.jdl" ".*\\\\.sed" ".*\\\\.proto" ".*\\\\.texi" ".*\\\\.example" "Make0" "/obsolete/" "/unknown/" ".*~" ".git/" ) ### # Set options specific to the # Nullsoft Installation System (NSIS) ### set(CPACK_PACKAGE_CONTACT "NetCDF Support ") if(WIN32) set(CPACK_NSIS_MODIFY_PATH ON) set(CPACK_NSIS_DISPLAY_NAME "NetCDF ${netCDF_VERSION}") set(CPACK_NSIS_PACKAGE_NAME "NetCDF ${netCDF_VERSION}") set(CPACK_NSIS_HELP_LINK "https://www.unidata.ucar.edu/netcdf") set(CPACK_NSIS_URL_INFO_ABOUT "https://www.unidata.ucar.edu/netcdf") set(CPACK_NSIS_CONTACT "support-netcdf@unidata.ucar.edu") set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON) set(CPACK_NSIS_MENU_LINKS "https://www.unidata.ucar.edu/software/netcdf" "Unidata Website" "https://docs.unidata.ucar.edu/netcdf-c" "NetCDF Stable Documentation") endif() ### # Set debian-specific options used when # creating .deb. # # http://www.cmake.org/Wiki/CMake:CPackPackageGenerators ### # This should be set using the output of dpkg --print-architecture. if(NC_DPKG) # Define a macro for getting the dpkg architecture. getdpkg_arch(dpkg_arch) set(CPACK_DEBIAN_PACKAGE_NAME "netcdf4-dev") set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "${dpkg_arch}") set(CPACK_DEBIAN_PACKAGE_DEPENDS "zlib1g (>= 1:1.2.3.4), libhdf5-7 (>= 1.8.11), libcurl4-openssl-dev (>= 7.22.0)") endif() ## # Set Copyright, License info for CPack. ## configure_file(${CMAKE_CURRENT_SOURCE_DIR}/COPYRIGHT ${CMAKE_CURRENT_BINARY_DIR}/COPYRIGHT.txt @ONLY ) set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_BINARY_DIR}/COPYRIGHT.txt") if(NOT CPACK_PACK_VERSION) set(CPACK_PACKAGE_VERSION ${VERSION}) endif() if(UNIX) set(CPACK_GENERATOR "STGZ" "TBZ2" "DEB" "ZIP") endif() if(APPLE) set(CPACK_SOURCE_GENERATOR "TGZ") set(CPACK_GENERATOR "productbuild" "STGZ" "TBZ2" "TGZ" "ZIP") endif() ## # Create an 'uninstall' target. ## configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" IMMEDIATE @ONLY) add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) ## # Customize some of the package component descriptions ## set(CPACK_COMPONENT_UTILITIES_DESCRIPTION "The NetCDF-C Utilities") set(CPACK_COMPONENT_LIBRARIES_DESCRIPTION "The NetCDF-C Libraries") set(CPACK_COMPONENT_HEADERS_DESCRIPTION "Header files for use with NetCDF-C") set(CPACK_COMPONENT_DEPENDENCIES_DESCRIPTION "Dependencies for this build of NetCDF-C") set(CPACK_COMPONENT_DOCUMENTATION_DESCRIPTION "The NetCDF-C user documentation.") include(CPack)