@@ -86,13 +86,21 @@ set(CUSTOM_SHELL_SHABANG "#!/bin/sh -e")
86
86
set (CPACK_GENERATOR "ZIP" )
87
87
set (CPACK_STRIP_FILES true )
88
88
set (CPACK_PACKAGE_NAME "${CMAKE_PROJECT_NAME} " )
89
- set (CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME} -${direwolf_VERSION} _${CMAKE_SYSTEM_PROCESSOR} " )
89
+ # This has architecture of the build machine, not the target platform.
90
+ # e.g. Comes out as x86_64 when building for i686 target platform.
91
+ #set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${direwolf_VERSION}_${CMAKE_SYSTEM_PROCESSOR}")
92
+ # We don't know the target yet so this is set after FindCPUflags.
90
93
set (CPACK_PACKAGE_CONTACT "https://github.com/wb2osz/direwolf" )
91
- set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Dire Wolf is a software soundcard AX.25 packet modem/ TNC and APRS encoder/decoder " )
94
+ SET (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Dire Wolf is an AX.25 soundcard TNC, digipeater, APRS IGate, GPS tracker, and APRStt gateway " )
92
95
set (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR} /README.md" )
93
96
set (CPACK_RESOURCE_FILE_README "${CMAKE_SOURCE_DIR} /README.md" )
94
97
set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR} /LICENSE" )
95
98
set (CPACK_SOURCE_IGNORE_FILES "${PROJECT_BINARY_DIR} ;/.git/;.gitignore;menu.yml;.travis.yml;.appveyor.yml;default.nix;.envrc;TODOs.org;/.scripts/" )
99
+ SET (CPACK_PACKAGE_VERSION "${direwolf_VERSION} " )
100
+ SET (CPACK_PACKAGE_VERSION_MAJOR "${direwolf_VERSION_MAJOR} " )
101
+ SET (CPACK_PACKAGE_VERSION_MINOR "${direwolf_VERSION_MINOR} " )
102
+ SET (CPACK_PACKAGE_VERSION_PATCH "${direwolf_VERSION_PATCH} " )
103
+ SET (CPACK_DEBIAN_PACKAGE_DEPENDS "libasound2,libgps23" )
96
104
97
105
# if we don't set build_type
98
106
if (NOT DEFINED CMAKE_BUILD_TYPE OR "${CMAKE_BUILD_TYPE} " STREQUAL "" )
@@ -114,6 +122,12 @@ include(FindCompiler)
114
122
# find cpu flags (and set compiler)
115
123
include (FindCPUflags)
116
124
125
+ if (${ARCHITECTURE} MATCHES "x86" )
126
+ set (CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME} -${direwolf_VERSION} _i686" )
127
+ else ()
128
+ set (CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME} -${direwolf_VERSION} _${ARCHITECTURE} " )
129
+ endif ()
130
+
117
131
# auto include current directory
118
132
set (CMAKE_INCLUDE_CURRENT_DIR ON )
119
133
0 commit comments