From 80a1a8bb838842a2be343bd88ad1462c21c5e2c9 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Wed, 31 Aug 2022 16:42:04 +0300 Subject: [PATCH] CMake: Add xz symlinks. These are a minor thing especially since the xz build has some real problems still like lack of large file support on 32-bit systems but I'll commit this since the code exists. Thanks to Jia Tan. --- CMakeLists.txt | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f4a1b9e..14b5adc7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ # - No replacement getopt_long(), libc must have it # - No sandboxing support # - No translations -# - No xz symlinks are installed # # Other missing things: # - No xzgrep or other scripts or their symlinks @@ -685,6 +684,43 @@ if(NOT MSVC AND HAVE_GETOPT_LONG) install(FILES src/xz/xz.1 DESTINATION "${CMAKE_INSTALL_MANDIR}/man1" COMPONENT xz) + + option(CREATE_XZ_SYMLINKS "Create unxz and xzcat symlinks" ON) + option(CREATE_LZMA_SYMLINKS "Create lzma, unlzma, and lzcat symlinks" + ON) + set(XZ_LINKS) + + if(CREATE_XZ_SYMLINKS) + list(APPEND XZ_LINKS "unxz" "xzcat") + endif() + + if(CREATE_LZMA_SYMLINKS) + list(APPEND XZ_LINKS "lzma" "unlzma" "lzcat") + endif() + + # Create symlinks in the build directory and then install them. + # + # FIXME? On OSes where executables have a suffix like .exe, this + # will create links like unxz -> xz.exe which is correct on Cygwin + # but perhaps on some other cases unxz.suffix -> xz.suffix would + # be the corrent thing? + foreach(LINK IN LISTS XZ_LINKS) + add_custom_target("${LINK}" ALL + "${CMAKE_COMMAND}" -E create_symlink + "$" "${LINK}" + BYPRODUCTS "${LINK}" + VERBATIM) + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${LINK}" + DESTINATION "${CMAKE_INSTALL_BINDIR}" + COMPONENT xz) + add_custom_target("${LINK}.1" ALL + "${CMAKE_COMMAND}" -E create_symlink "xz.1" "${LINK}.1" + BYPRODUCTS "${LINK}.1" + VERBATIM) + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${LINK}.1" + DESTINATION "${CMAKE_INSTALL_MANDIR}/man1" + COMPONENT xz) + endforeach() endif() endif()