From e1a03e872427611006fffa8fe82e4a2e3ffcbbc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sat, 13 May 2017 10:41:32 +0200 Subject: NOISSUE make the linux package binary name configurable and default to 'multimc' --- application/CMakeLists.txt | 5 +++-- application/package/linux/multimc.desktop | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/application/CMakeLists.txt b/application/CMakeLists.txt index 9c1ca3cd..681287c1 100644 --- a/application/CMakeLists.txt +++ b/application/CMakeLists.txt @@ -395,14 +395,15 @@ elseif(MultiMC_LAYOUT_REAL STREQUAL "lin-nodeps") elseif(MultiMC_LAYOUT_REAL STREQUAL "lin-system") set(MultiMC_BINARY_DEST_DIR "usr/bin" CACHE STRING "Relative path from packaging root to the binary directory") set(MultiMC_LIBRARY_DEST_DIR "usr/lib" CACHE STRING "Relative path from packaging root to the library directory") - set(MultiMC_SHARE_DEST_DIR "usr/share/multimc5" CACHE STRING "Relative path from packaging root to the shared data directory") + set(MultiMC_SHARE_DEST_DIR "usr/share/multimc" CACHE STRING "Relative path from packaging root to the shared data directory") + set(MultiMC_APP_BINARY_NAME "multimc" CACHE STRING "Name of the MultiMC binary for the purposes of linux packaging") set(JARS_DEST_DIR "${MultiMC_SHARE_DEST_DIR}") set(BINARY_DEST_DIR ${MultiMC_BINARY_DEST_DIR}) set(LIBRARY_DEST_DIR ${MultiMC_LIBRARY_DEST_DIR}) MESSAGE(STATUS "Compiling for linux system with ${MultiMC_SHARE_DEST_DIR} and MULTIMC_LINUX_DATADIR") - set_target_properties(MultiMC PROPERTIES OUTPUT_NAME "multimc5") + set_target_properties(MultiMC PROPERTIES OUTPUT_NAME ${MultiMC_APP_BINARY_NAME}) target_compile_definitions(MultiMC PRIVATE "-DMULTIMC_JARS_LOCATION=/${MultiMC_SHARE_DEST_DIR}/jars" "-DMULTIMC_LINUX_DATADIR" ) diff --git a/application/package/linux/multimc.desktop b/application/package/linux/multimc.desktop index ad18381e..7fce5c7a 100755 --- a/application/package/linux/multimc.desktop +++ b/application/package/linux/multimc.desktop @@ -2,7 +2,7 @@ Version=1.0 Encoding=UTF-8 Name=MultiMC -GenericName=Minecraft launcher +GenericName=MultiMC Comment=Free, open source launcher and instance manager for Minecraft. Type=Application Terminal=false -- cgit v1.2.3