mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
fcc0563391
The location of documentation files on Linux distributions is controlled to a certain extent. Using the QStandardPaths::locate() method helps us with this. Work round the misbehaviour of QCoreApplication::applicationDirPath() when the CWD has been changed by working out the documentation location before changing the CWD to a temporary directory. This path is now provided by the Configuration settings class which also manages other run time paths. Updated Debian packaging to move a little nearer a conforming DEB file. Added a basic manpage for rigctld-wsjtx. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4364 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
40 lines
1.2 KiB
CMake
40 lines
1.2 KiB
CMake
find_program (GZIP_EXECUTABLE NAMES gzip)
|
|
|
|
string (TIMESTAMP ts "%w, %d [%m] %Y %H:%M:%S +0000" UTC)
|
|
|
|
set (__days Sun Mon Tue Wed Thu Fri Sat)
|
|
string (SUBSTRING ${ts} 0 1 __index)
|
|
list (GET __days ${__index} __day)
|
|
string (REPLACE "${__index}," "${__day}," ts ${ts})
|
|
|
|
set (__months Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec)
|
|
string (SUBSTRING ${ts} 9 2 __month_index)
|
|
math (EXPR __index "${__month_index} - 1")
|
|
list (GET __months "${__index}" __month)
|
|
string (REPLACE "[${__month_index}]" "${__month}" ts ${ts})
|
|
|
|
set (deb_changelog changelog.Debian)
|
|
configure_file (
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/${deb_changelog}.in"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/${deb_changelog}"
|
|
@ONLY)
|
|
|
|
add_custom_target (debian
|
|
COMMAND ${GZIP_EXECUTABLE} -cf9 ${deb_changelog} > ${deb_changelog}.gz
|
|
DEPENDS ${deb_changelog}.in
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
|
COMMENT "Compressing Debian changelog"
|
|
)
|
|
|
|
configure_file (
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/copyright.in"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/copyright"
|
|
@ONLY)
|
|
|
|
install (FILES
|
|
${CMAKE_CURRENT_BINARY_DIR}/${deb_changelog}.gz
|
|
${CMAKE_CURRENT_BINARY_DIR}/copyright
|
|
DESTINATION ${WSJT_SHARE_DESTINATION}/${WSJT_DOC_DESTINATION}
|
|
#COMPONENT Debian
|
|
)
|