123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- Name: rustdesk
- Version: 1.3.3
- Release: 0
- Summary: RPM package
- License: GPL-3.0
- URL: https://rustdesk.com
- Vendor: rustdesk <info@rustdesk.com>
- Requires: gtk3 libxcb1 xdotool libXfixes3 alsa-utils libXtst6 libvdpau1 libva2 pam gstreamer-plugins-base gstreamer-plugin-pipewire
- Recommends: libayatana-appindicator3-1
- Provides: libdesktop_drop_plugin.so()(64bit), libdesktop_multi_window_plugin.so()(64bit), libfile_selector_linux_plugin.so()(64bit), libflutter_custom_cursor_plugin.so()(64bit), libflutter_linux_gtk.so()(64bit), libscreen_retriever_plugin.so()(64bit), libtray_manager_plugin.so()(64bit), liburl_launcher_linux_plugin.so()(64bit), libwindow_manager_plugin.so()(64bit), libwindow_size_plugin.so()(64bit), libtexture_rgba_renderer_plugin.so()(64bit)
- %description
- The best open-source remote desktop client software, written in Rust.
- %prep
- # we have no source, so nothing here
- %build
- # we have no source, so nothing here
- # %global __python %{__python3}
- %install
- mkdir -p "%{buildroot}/usr/lib/rustdesk" && cp -r ${HBB}/flutter/build/linux/x64/release/bundle/* -t "%{buildroot}/usr/lib/rustdesk"
- mkdir -p "%{buildroot}/usr/bin"
- install -Dm 644 $HBB/res/rustdesk.service -t "%{buildroot}/usr/share/rustdesk/files"
- install -Dm 644 $HBB/res/rustdesk.desktop -t "%{buildroot}/usr/share/rustdesk/files"
- install -Dm 644 $HBB/res/rustdesk-link.desktop -t "%{buildroot}/usr/share/rustdesk/files"
- install -Dm 644 $HBB/res/128x128@2x.png "%{buildroot}/usr/share/icons/hicolor/256x256/apps/rustdesk.png"
- install -Dm 644 $HBB/res/scalable.svg "%{buildroot}/usr/share/icons/hicolor/scalable/apps/rustdesk.svg"
- %files
- /usr/lib/rustdesk/*
- /usr/share/rustdesk/files/rustdesk.service
- /usr/share/icons/hicolor/256x256/apps/rustdesk.png
- /usr/share/icons/hicolor/scalable/apps/rustdesk.svg
- /usr/share/rustdesk/files/rustdesk.desktop
- /usr/share/rustdesk/files/rustdesk-link.desktop
- %changelog
- # let's skip this for now
- # https://www.cnblogs.com/xingmuxin/p/8990255.html
- %pre
- # can do something for centos7
- case "$1" in
- 1)
- # for install
- ;;
- 2)
- # for upgrade
- systemctl stop rustdesk || true
- ;;
- esac
- %post
- cp /usr/share/rustdesk/files/rustdesk.service /etc/systemd/system/rustdesk.service
- cp /usr/share/rustdesk/files/rustdesk.desktop /usr/share/applications/
- cp /usr/share/rustdesk/files/rustdesk-link.desktop /usr/share/applications/
- ln -s /usr/lib/rustdesk/rustdesk /usr/bin/rustdesk
- systemctl daemon-reload
- systemctl enable rustdesk
- systemctl start rustdesk
- update-desktop-database
- %preun
- case "$1" in
- 0)
- # for uninstall
- systemctl stop rustdesk || true
- systemctl disable rustdesk || true
- rm /etc/systemd/system/rustdesk.service || true
- ;;
- 1)
- # for upgrade
- ;;
- esac
- %postun
- case "$1" in
- 0)
- # for uninstall
- rm /usr/share/applications/rustdesk.desktop || true
- rm /usr/share/applications/rustdesk-link.desktop || true
- rm /usr/bin/rustdesk || true
- update-desktop-database
- ;;
- 1)
- # for upgrade
- ;;
- esac
|