diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d07c51991..8f14147d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -336,7 +336,7 @@ jobs: mv ./AppDir/lib64/ld-${{ matrix.env.ld_library_arch }}.so.2 ./AppDir/usr/bin/ sed -i -e 's@^LD_LINUX.*@LD_LINUX=$(find "$HERE/usr/bin" -name "ld-*.so.*" | head -n 1)@g' ./AppDir/AppRun - rm ./AppDir/usr/share/metainfo/gittyup.appdata.xml + rm ./AppDir/usr/share/metainfo/com.github.Murmele.Gittyup.appdata.xml VERSION=$(cat ./Version.txt) VERSION="$VERSION" ./appimagetool-*.AppImage ./AppDir # turn AppDir into AppImage #ls -lh Gittyup-* diff --git a/com.github.Murmele.Gittyup.yml b/com.github.Murmele.Gittyup.yml index 6316086a6..c843419a2 100644 --- a/com.github.Murmele.Gittyup.yml +++ b/com.github.Murmele.Gittyup.yml @@ -20,8 +20,6 @@ finish-args: - --talk-name=org.freedesktop.Notifications - --talk-name=org.freedesktop.Flatpak rename-icon: gittyup # Image will renamed to match the app-id konvention -rename-desktop-file: gittyup.desktop -rename-appdata-file: gittyup.appdata.xml build-options: append-path: /usr/lib/sdk/golang/bin diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt index c191aae43..40070b17b 100755 --- a/src/app/CMakeLists.txt +++ b/src/app/CMakeLists.txt @@ -215,13 +215,9 @@ else() if(UNIX) install( FILES ${CMAKE_SOURCE_DIR}/rsrc/linux/com.github.Murmele.Gittyup.desktop - DESTINATION ${CMAKE_INSTALL_DATADIR}/applications - RENAME ${GITTYUP_EXECUTABLE_NAME}.desktop) + DESTINATION ${CMAKE_INSTALL_DATADIR}/applications) if(${GENERATE_APPDATA}) - install( - FILES ${APPDATA} - DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo - RENAME ${GITTYUP_EXECUTABLE_NAME}.appdata.xml) + install(FILES ${APPDATA} DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo) endif() endif()