-
Notifications
You must be signed in to change notification settings - Fork 26
/
CPack.txt
111 lines (96 loc) · 3.17 KB
/
CPack.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# default options
set(CPACK_ARCHIVE_COMPONENT_INSTALL ${CPACK_COMPONENT_INSTALL})
set(CPACK_SOURCE_IGNORE_FILES "/[.]git/;/[.](idea|settings|c?project);~$;[.]log$;[.]bak$")
macro(cpack_include_if GENERATOR)
message(STATUS "Checking ${GENERATOR} package configuration ...")
if(EXISTS ${CMAKE_SOURCE_DIR}/CPack/${GENERATOR}.txt)
include(${CMAKE_SOURCE_DIR}/CPack/${GENERATOR}.txt)
endif()
endmacro()
# shell installer
set(CPACK_BINARY_STGZ ${UNIX})
# binary archive
set(CPACK_BINARY_TBZ2 0)
set(CPACK_BINARY_TGZ ${UNIX})
set(CPACK_BINARY_TXZ 0)
set(CPACK_BINARY_TZ 0)
set(CPACK_BINARY_ZIP ${WIN32})
set(CPACK_BINARY_NSIS ${WIN32})
set(CPACK_BINARY_NUGET 0)
# source archive
set(CPACK_SOURCE_TBZ2 0)
set(CPACK_SOURCE_TGZ ${UNIX})
set(CPACK_SOURCE_TXZ 0)
set(CPACK_SOURCE_TZ 0)
set(CPACK_SOURCE_ZIP ${WIN32})
# project internals
set(CPACK_PACKAGE_LICENSE "BSD-3-Clause")
set(CPACK_PACKAGE_CONTACT "${PROJECT_CONTACT}")
set(CPACK_PACKAGE_VENDOR "${PROJECT_CONTACT}")
set(CPACK_PACKAGE_DESCRIPTION
"libmemcached-awesome is an open source C/C++ client library and tools
for the memcached server (http://memcached.org/). It has been designed
to be light on memory usage, thread safe, and provide full access to
server side methods.")
set(CPACK_PROJECT_CONFIG ${PROJECT_CONFIG})
set(CPACK_PROJECT_CONFIG_FILE "${CMAKE_SOURCE_DIR}/CPack/ProjectConfig.txt")
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README.md")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "${PROJECT_NAME}/${PROJECT_VERSION}")
set(CPACK_PACKAGE_CHECKSUM SHA1)
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/LICENSE")
set(CPACK_RESOURCE_FILE_README "${CMAKE_SOURCE_DIR}/README.md")
set(CPACK_CHANGELOG_FILE "${CMAKE_SOURCE_DIR}/ChangeLog-1.1.md")
set(CPACK_PACKAGE_DIRECTORY "${CMAKE_BINARY_DIR}")
execute_process(
COMMAND git describe --tags --match [0-9]*.*
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE PROJECT_TAG
ERROR_VARIABLE GIT_ERROR_OUTPUT
)
if(GIT_ERROR_OUTPUT)
message(NOTICE "git describe: ${GIT_ERROR_OUTPUT}")
endif()
string(STRIP "${PROJECT_TAG}" PROJECT_TAG)
if(PROJECT_TAG)
set(CPACK_PACKAGE_FILE_NAME ${PROJECT_NAME}-${PROJECT_TAG})
set(CPACK_PACKAGE_VERSION ${PROJECT_TAG})
else()
set(CPACK_PACKAGE_FILE_NAME ${PROJECT_NAME}-${PROJECT_VERSION})
set(CPACK_PACKAGE_VERSION ${PROJECT_VERSION})
endif()
# dependencies
if(HAVE_LIBSASL)
string(APPEND CPACK_PACKAGE_DEPENDS " libsasl2")
endif()
if(HAVE_TBB)
string(APPEND CPACK_PACKAGE_DEPENDS " tbb")
endif()
if(HAVE_LIBEVENT)
string(APPEND CPACK_PACKAGE_DEPENDS " libevent")
endif()
# DEBs
find_program(DPKG dpkg)
if(DPKG)
cpack_include_if(DEB)
endif()
# WIN
if(WIN32)
cpack_include_if(NSIS)
endif()
# RPMs
find_program(RPMBUILD rpmbuild)
if(RPMBUILD)
cpack_include_if(RPM)
endif()
# keep last
include(CPack)
set(PUSH_ARTIFACTS_SH "${CMAKE_SOURCE_DIR}/scripts/push-artifacts.sh")
if(WIN32)
set(PUSH_ARTIFACTS_CMD msys2 -c '${PUSH_ARTIFACTS_SH} ${CPACK_PACKAGE_VERSION}')
else()
set(PUSH_ARTIFACTS_CMD ${PUSH_ARTIFACTS_SH} ${CPACK_PACKAGE_VERSION})
endif()
add_custom_target(push-artifacts
COMMAND ${PUSH_ARTIFACTS_CMD}
WORKING_DIRECTORY ${CPACK_PACKAGE_DIRECTORY}
)