mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
09b9106550
Exherbo installs architecture dependent data in a different place than architecture independent data. More concretely: binaries go in /usr/$chost/{bin,lib}, data goes in /usr/share and configs in /etc, /etc is already configurable through CMAKE_INSTALL_FULL_SYSCONFDIR but the datadir was not. This patch fixes it so that things can be pushed in the right places.
32 lines
814 B
CMake
32 lines
814 B
CMake
find_package(A2X REQUIRED)
|
|
|
|
add_custom_target(man ALL)
|
|
|
|
function(add_manpage name section)
|
|
add_custom_command(
|
|
OUTPUT ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${name}.${section}
|
|
COMMAND ${A2X_COMMAND}
|
|
--no-xmllint
|
|
--doctype manpage
|
|
--format manpage
|
|
-D ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/${name}.${section}.txt
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${name}.${section}.txt
|
|
COMMENT Generating manpage for ${name}.${section}
|
|
)
|
|
|
|
add_custom_target(man-${name}.${section}
|
|
DEPENDS
|
|
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${name}.${section}
|
|
)
|
|
add_dependencies(man
|
|
man-${name}.${section}
|
|
)
|
|
|
|
install(
|
|
FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${name}.${section}
|
|
DESTINATION ${CMAKE_INSTALL_FULL_DATAROOTDIR}/man/man${section}
|
|
COMPONENT documentation
|
|
)
|
|
endfunction()
|