53 lines
1.8 KiB
CMake
53 lines
1.8 KiB
CMake
execute_process(COMMAND date "+%a %b %d %Y"
|
|
OUTPUT_VARIABLE RPM_DATE OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/clementine.spec.in
|
|
${CMAKE_CURRENT_SOURCE_DIR}/clementine.spec @ONLY)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Info.plist.in
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/maketarball.sh.in
|
|
${CMAKE_CURRENT_SOURCE_DIR}/maketarball.sh @ONLY)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/windows/clementine.nsi.in
|
|
${CMAKE_CURRENT_SOURCE_DIR}/windows/clementine.nsi @ONLY)
|
|
# windows/windres.rc is done by src/CMakeLists.txt
|
|
|
|
if(EXISTS /etc/lsb-release)
|
|
file(READ "/etc/lsb-release" LSB_RELEASE_CONTENTS)
|
|
string(REGEX MATCH "DISTRIB_ID=Ubuntu" IS_UBUNTU ${LSB_RELEASE_CONTENTS})
|
|
if(IS_UBUNTU)
|
|
set(INSTALL_UBUNTU_ICONS_DEFAULT ON)
|
|
else(IS_UBUNTU)
|
|
set(INSTALL_UBUNTU_ICONS_DEFAULT OFF)
|
|
endif(IS_UBUNTU)
|
|
else(EXISTS /etc/lsb-release)
|
|
set(INSTALL_UBUNTU_ICONS_DEFAULT OFF)
|
|
endif(EXISTS /etc/lsb-release)
|
|
|
|
option(INSTALL_UBUNTU_ICONS "Install the Ubuntu themed monochrome panel icons" ${INSTALL_UBUNTU_ICONS_DEFAULT})
|
|
|
|
if (NOT APPLE)
|
|
install(FILES clementine_64.png
|
|
DESTINATION share/icons/hicolor/64x64/apps/
|
|
RENAME application-x-clementine.png
|
|
)
|
|
|
|
install(FILES ../data/icon.svg
|
|
DESTINATION share/icons/hicolor/scalable/apps/
|
|
RENAME application-x-clementine.svg
|
|
)
|
|
|
|
install(FILES clementine.desktop
|
|
DESTINATION share/applications
|
|
)
|
|
|
|
if(INSTALL_UBUNTU_ICONS)
|
|
foreach(icon clementine-panel.png clementine-panel-grey.png)
|
|
foreach(theme ubuntu-mono-dark ubuntu-mono-light)
|
|
install(FILES icons/${theme}/${icon}
|
|
DESTINATION share/icons/${theme}/apps/24/
|
|
)
|
|
endforeach(theme)
|
|
endforeach(icon)
|
|
endif(INSTALL_UBUNTU_ICONS)
|
|
endif (NOT APPLE)
|