-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add information to allow for packaging of zlib.
- Loading branch information
Showing
2 changed files
with
76 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,14 +131,61 @@ target_link_libraries(zlib INTERFACE ${ZLIB_TARGET}) | |
|
||
install(TARGETS ${ZLIB_TARGET} zlib | ||
EXPORT zlib-config | ||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} | ||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT development | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT runtime NAMELINK_COMPONENT development | ||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT runtime | ||
INCLUDES DESTINATION include) | ||
INSTALL(FILES ${ZLIB_PUBLIC_HDRS} DESTINATION include) | ||
INSTALL(FILES ${ZLIB_PUBLIC_HDRS} DESTINATION include COMPONENT development) | ||
|
||
install(EXPORT zlib-config DESTINATION ${PACKAGE_CONFIG_DIR}) | ||
install(EXPORT zlib-config DESTINATION ${PACKAGE_CONFIG_DIR} COMPONENT development) | ||
include(CMakePackageConfigHelpers) | ||
WRITE_BASIC_PACKAGE_VERSION_FILE(${CMAKE_CURRENT_BINARY_DIR}/zlib-config-version.cmake COMPATIBILITY AnyNewerVersion) | ||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/zlib-config-version.cmake DESTINATION ${PACKAGE_CONFIG_DIR}) | ||
|
||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/zlib-config-version.cmake DESTINATION ${PACKAGE_CONFIG_DIR} COMPONENT development) | ||
|
||
set(VERSION "${ZLIB_VERSION_MAJOR}.${ZLIB_VERSION_MINOR}.${ZLIB_VERSION_PATCH}") | ||
set(PACKAGE "zlib") | ||
set(PACKAGE_BUGREPORT "[email protected]") | ||
set(PACKAGE_NAME "zlib") | ||
set(PACKAGE_STRING "zlib ${VERSION}") | ||
set(PACKAGE_TARNAME "zlib") | ||
set(PACKAGE_URL "https://zlib.net/") | ||
set(PACKAGE_VERSION ${VERSION}) | ||
|
||
set(CPACK_COMPONENT_DEVELOPMENT_DEPENDS runtime) | ||
set(CPACK_COMPONENT_PROGRAMS_DEPENDS runtime) | ||
set(CPACK_DEB_COMPONENT_INSTALL ON) | ||
set(CPACK_DEBIAN_DEVELOPMENT_PACKAGE_DEPENDS "${PACKAGE_TARNAME}") | ||
set(CPACK_DEBIAN_DEVELOPMENT_PACKAGE_NAME "${PACKAGE_TARNAME}-dev") | ||
set(CPACK_DEBIAN_DEVELOPMENT_PACKAGE_SECTION "libdevel") | ||
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE ${PACKAGE_URL}) | ||
set(CPACK_DEBIAN_PACKAGE_NAME ${PACKAGE_TARNAME}) | ||
set(CPACK_DEBIAN_PACKAGE_SECTION "devel") | ||
set(CPACK_DEBIAN_PROGRAMS_PACKAGE_DEPENDS "${PACKAGE_TARNAME}") | ||
set(CPACK_DEBIAN_PROGRAMS_PACKAGE_NAME "${PACKAGE_TARNAME}-utils") | ||
set(CPACK_DEBIAN_PROGRAMS_PACKAGE_SECTION "utils") | ||
set(CPACK_DEBIAN_RUNTIME_PACKAGE_NAME ${PACKAGE_TARNAME}) | ||
set(CPACK_DEBIAN_RUNTIME_PACKAGE_RECOMMENDS "${PACKAGE_TARNAME}-utils") | ||
set(CPACK_DEBIAN_RUNTIME_PACKAGE_SECTION "libs") | ||
set(CPACK_NSIS_PACKAGE_NAME ${PACKAGE_STRING}) | ||
set(CPACK_NSIS_URL_INFO_ABOUT ${PACKAGE_URL}) | ||
set(CPACK_PACKAGE_CONTACT ${PACKAGE_BUGREPORT}) | ||
set(CPACK_PACKAGE_DISPLAY_NAME ${PACKAGE_STRING}) | ||
set(CPACK_PACKAGE_INSTALL_DIRECTORY "${PACKAGE_TARNAME}-${PACKAGE_VERSION}") | ||
set(CPACK_PACKAGE_NAME ${PACKAGE_TARNAME}) | ||
set(CPACK_PACKAGE_VERSION ${PACKAGE_VERSION}) | ||
set(CPACK_PACKAGE_VERSION_MAJOR ${ZLIB_VERSION_MAJOR}) | ||
set(CPACK_PACKAGE_VERSION_MINOR ${ZLIB_VERSION_MINOR}) | ||
set(CPACK_PACKAGE_VERSION_PATCH ${ZLIB_VERSION_PATCH}) | ||
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/Copyright) | ||
set(CPACK_RPM_COMPONENT_INSTALL ON) | ||
set(CPACK_RPM_development_PACKAGE_NAME "${PACKAGE_NAME}-devel") | ||
set(CPACK_RPM_development_PACKAGE_REQUIRES "${PACKAGE_NAME}") | ||
set(CPACK_RPM_PACKAGE_GROUP "Development/Libraries") | ||
set(CPACK_RPM_PACKAGE_NAME ${PACKAGE_TARNAME}) | ||
set(CPACK_RPM_PACKAGE_URL ${PACKAGE_URL}) | ||
set(CPACK_RPM_programs_PACKAGE_NAME "${PACKAGE_NAME}-utils") | ||
set(CPACK_RPM_programs_PACKAGE_REQUIRES "${PACKAGE_NAME}") | ||
set(CPACK_RPM_runtime_PACKAGE_NAME "${PACKAGE_NAME}") | ||
set(CPACK_RPM_runtime_PACKAGE_SUGGESTS "${PACKAGE_NAME}-utils") | ||
|
||
include(CPack) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
(C) 1995-2004 Jean-loup Gailly and Mark Adler | ||
|
||
This software is provided 'as-is', without any express or implied | ||
warranty. In no event will the authors be held liable for any damages | ||
arising from the use of this software. | ||
|
||
Permission is granted to anyone to use this software for any purpose, | ||
including commercial applications, and to alter it and redistribute it | ||
freely, subject to the following restrictions: | ||
|
||
1. The origin of this software must not be misrepresented; you must not | ||
claim that you wrote the original software. If you use this software | ||
in a product, an acknowledgment in the product documentation would be | ||
appreciated but is not required. | ||
2. Altered source versions must be plainly marked as such, and must not be | ||
misrepresented as being the original software. | ||
3. This notice may not be removed or altered from any source distribution. | ||
|
||
Jean-loup Gailly Mark Adler | ||
[email protected] [email protected] | ||
|