Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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-*
Expand Down
2 changes: 0 additions & 2 deletions com.github.Murmele.Gittyup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 2 additions & 6 deletions src/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
Loading