-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
(cherry picked from commit 09a8da6) Co-authored-by: madomado <[email protected]>
- Loading branch information
Showing
1 changed file
with
18 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,32 +32,35 @@ Packager: madonuko <[email protected]> | |
%license LICENSE.md | ||
%license LICENSE.dependencies | ||
%_bindir/ruffle_desktop | ||
|
||
%package devel | ||
Summary: %{summary} | ||
BuildArch: noarch | ||
|
||
%description devel %{_description} | ||
|
||
This package contains library source intended for building other packages which | ||
use the "%{crate}" crate. | ||
|
||
%files devel | ||
%license %{crate_instdir}/LICENSE.md | ||
%doc %{crate_instdir}/CONTRIBUTING.md | ||
%doc %{crate_instdir}/README.md | ||
%{crate_instdir}/ | ||
%_datadir/applications/ruffle_desktop.desktop | ||
%_iconsdir/hicolor/scalable/apps/ruffle_desktop.svg | ||
|
||
%prep | ||
%autosetup -n ruffle-nightly-%ver | ||
%cargo_prep_online | ||
|
||
cat<<EOF > ruffle_desktop.desktop | ||
[Desktop Entry] | ||
Version=1.0 | ||
Type=Application | ||
Name=Ruffle Desktop | ||
Comment=%summary | ||
Exec=%_bindir/ruffle_desktop | ||
Icon=ruffle_desktop | ||
Terminal=false | ||
StartupNotify=false | ||
Categories=Application; | ||
MimeType=application/x-shockwave-flash; | ||
EOF | ||
|
||
%build | ||
%{cargo_license_online} > LICENSE.dependencies | ||
|
||
%install | ||
cd desktop | ||
%cargo_install | ||
install -Dm644 assets/logo.svg %buildroot%_iconsdir/hicolor/scalable/apps/ruffle_desktop.svg | ||
install -Dm644 ../ruffle_desktop.desktop %buildroot%_datadir/applications/ruffle_desktop.desktop | ||
|
||
%changelog | ||
* Mon Jul 29 2024 madonuko <[email protected]> | ||
|