-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f34d78
commit 2dc1267
Showing
4 changed files
with
56 additions
and
24 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
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[Desktop Entry] | ||
Name=Linwood Flow | ||
Comment=Free, opensource time and event management software | ||
Exec=/usr/bin/linwood-flow %f | ||
Icon=/usr/share/linwood-flow/data/flutter_assets/images/logo.svg | ||
Terminal=false | ||
Type=Application | ||
Categories=Productivity; |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Name: linwood-flow | ||
Version: 1.0.0 | ||
Release: 1%{?dist} | ||
Summary: Free, opensource time and event management software | ||
BuildArch: x86_64 | ||
URL: https://github.com/LinwoodDev/Flow | ||
License: AGPLv3 | ||
Source0: %{name}-%{version}.tar.gz | ||
|
||
Requires: bash | ||
|
||
%description | ||
Linwood Flow is a free, opensource time and event management software. You can choose where your data is stored and who can access it. Group your events and manage places and people. The app is available for Windows, Linux, Android and Web. | ||
|
||
%prep | ||
%setup -q | ||
|
||
%install | ||
rm -rf $RPM_BUILD_ROOT | ||
mkdir -p $RPM_BUILD_ROOT/%{_bindir} | ||
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/%{name} | ||
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/pixmaps | ||
cp %{name} $RPM_BUILD_ROOT/%{_datadir}/%{name} | ||
cp -R lib $RPM_BUILD_ROOT/%{_datadir}/%{name} | ||
cp -R data $RPM_BUILD_ROOT/%{_datadir}/%{name} | ||
ln -s %{_datadir}/%{name}/%{name} $RPM_BUILD_ROOT/%{_bindir}/%{name} | ||
desktop-file-install %{name}.desktop | ||
|
||
%clean | ||
rm -rf $RPM_BUILD_ROOT | ||
|
||
%files | ||
%{_bindir}/%{name} | ||
%{_datadir}/%{name} | ||
/usr/share/applications/ |