Skip to content

Commit

Permalink
Revert "manifest updates from the Flathub's PR (rustdesk#9581)" (rust…
Browse files Browse the repository at this point in the history
…desk#9585)

This reverts commit e06f456.
  • Loading branch information
rustdesk authored Oct 7, 2024
1 parent 28b6bc1 commit 5555ba6
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 72 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/flutter-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1951,8 +1951,8 @@ jobs:
wget
# flatpak deps
flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak --user install -y flathub org.freedesktop.Platform/${{ matrix.job.arch }}/24.08
flatpak --user install -y flathub org.freedesktop.Sdk/${{ matrix.job.arch }}/24.08
flatpak --user install -y flathub org.freedesktop.Platform/${{ matrix.job.arch }}/23.08
flatpak --user install -y flathub org.freedesktop.Sdk/${{ matrix.job.arch }}/23.08
# package
pushd flatpak
git clone https://github.com/flathub/shared-modules.git --depth=1
Expand Down
40 changes: 0 additions & 40 deletions flatpak/com.rustdesk.RustDesk.metainfo.xml

This file was deleted.

50 changes: 20 additions & 30 deletions flatpak/rustdesk.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,19 @@
{
"id": "com.rustdesk.RustDesk",
"runtime": "org.freedesktop.Platform",
"runtime-version": "24.08",
"runtime-version": "23.08",
"sdk": "org.freedesktop.Sdk",
"command": "rustdesk",
"rename-desktop-file": "rustdesk.desktop",
"rename-icon": "rustdesk",
"cleanup": [
"/include",
"/lib/pkgconfig",
"/share/gtk-doc"
],
"icon": "share/icons/hicolor/scalable/apps/rustdesk.svg",
"modules": [
"shared-modules/libappindicator/libappindicator-gtk3-12.10.json",
{
"name": "xdotool",
"no-autogen": true,
"make-install-args": [
"PREFIX=${FLATPAK_DEST}"
],
"sources": [
{
"type": "archive",
"url": "https://github.com/jordansissel/xdotool/releases/download/v3.20211022.1/xdotool-3.20211022.1.tar.gz",
"sha256": "96f0facfde6d78eacad35b91b0f46fecd0b35e474c03e00e30da3fdd345f9ada"
}
]
},
"xdotool.json",
{
"name": "pam",
"buildsystem": "autotools",
"config-opts": [ "--disable-selinux" ],
"buildsystem": "simple",
"build-commands": [
"./configure --disable-selinux --prefix=/app && make -j4 install"
],
"sources": [
{
"type": "archive",
Expand All @@ -43,25 +26,32 @@
"name": "rustdesk",
"buildsystem": "simple",
"build-commands": [
"bsdtar -Oxf rustdesk.deb data.tar.xz | bsdtar -xf -",
"cp -r usr/* /app/",
"bsdtar -zxvf rustdesk.deb",
"tar -xvf ./data.tar.xz",
"cp -r ./usr/* /app/",
"mkdir -p /app/bin && ln -s /app/lib/rustdesk/rustdesk /app/bin/rustdesk",
"install -Dm644 com.rustdesk.RustDesk.metainfo.xml /app/share/metainfo/com.rustdesk.RustDesk.metainfo.xml"
"mv /app/share/applications/rustdesk.desktop /app/share/applications/com.rustdesk.RustDesk.desktop",
"mv /app/share/applications/rustdesk-link.desktop /app/share/applications/com.rustdesk.RustDesk-link.desktop",
"sed -i '/^Icon=/ c\\Icon=com.rustdesk.RustDesk' /app/share/applications/*.desktop",
"mv /app/share/icons/hicolor/scalable/apps/rustdesk.svg /app/share/icons/hicolor/scalable/apps/com.rustdesk.RustDesk.svg",
"for size in 16 24 32 48 64 128 256 512; do\n rsvg-convert -w $size -h $size -f png -o $size.png scalable.svg\n install -Dm644 $size.png /app/share/icons/hicolor/${size}x${size}/apps/com.rustdesk.RustDesk.png\n done"
],
"cleanup": ["/include", "/lib/pkgconfig", "/share/gtk-doc"],
"sources": [
{
"type": "file",
"path": "rustdesk.deb"
"path": "./rustdesk.deb"
},
{
"type": "file",
"path": "com.rustdesk.RustDesk.metainfo.xml"
"path": "../res/scalable.svg"
}
]
}
],
"finish-args": [
"--share=ipc",
"--socket=x11",
"--socket=fallback-x11",
"--socket=wayland",
"--share=network",
Expand All @@ -70,4 +60,4 @@
"--socket=pulseaudio",
"--talk-name=org.freedesktop.Flatpak"
]
}
}
15 changes: 15 additions & 0 deletions flatpak/xdotool.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "xdotool",
"buildsystem": "simple",
"build-commands": [
"make -j4 && PREFIX=./build make install",
"cp -r ./build/* /app/"
],
"sources": [
{
"type": "archive",
"url": "https://github.com/jordansissel/xdotool/releases/download/v3.20211022.1/xdotool-3.20211022.1.tar.gz",
"sha256": "96f0facfde6d78eacad35b91b0f46fecd0b35e474c03e00e30da3fdd345f9ada"
}
]
}

0 comments on commit 5555ba6

Please sign in to comment.