53710f8ae8
- Update to 11.3 - Enhanced main grid color scheme - Mouse-highlight for file selection - Added file create/delete indicators - Show file list tooltip for missing items - Click folder name and scroll to group start - Log failure to create application default config folder - Added tooltips and fixed help link context menu - Fixed tooltip not updated when scrolling (macOS, Linux) - Move error dialogs to foreground during batch sync - Align context menu popup positions - Updated translation files OBS-URL: https://build.opensuse.org/request/show/846291 OBS-URL: https://build.opensuse.org/package/show/network/FreeFileSync?expand=0&rev=39
123 lines
3.8 KiB
RPMSpec
123 lines
3.8 KiB
RPMSpec
#
|
|
# spec file for package FreeFileSync
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: FreeFileSync
|
|
Version: 11.3
|
|
Release: 0
|
|
Summary: Free backup software to synchronize files and folders
|
|
License: GPL-3.0-or-later
|
|
Group: Productivity/Networking/System
|
|
URL: https://www.freefilesync.org/
|
|
Source0: %{name}_%{version}_Source.zip
|
|
Source1: %{name}.desktop
|
|
Source2: %{name}.png
|
|
Source3: RealTimeSync.desktop
|
|
Source4: RealTimeSync.png
|
|
Patch0: FreeFileSync-Build.patch
|
|
Patch1: FreeFileSync-Resources.patch
|
|
BuildRequires: boost-devel >= 1.54
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libcurl-devel
|
|
BuildRequires: libopenssl-devel
|
|
BuildRequires: libssh2-devel
|
|
BuildRequires: libstdc++6 >= 10.0.0
|
|
BuildRequires: unzip
|
|
BuildRequires: update-desktop-files
|
|
BuildRequires: wxGTK3-3_2-devel >= 3.1.4
|
|
|
|
%description
|
|
FreeFileSync is a free Open Source software that helps you synchronize files
|
|
and synchronize folders for Windows, Linux and Mac OS X. It is designed to save
|
|
your time setting up and running backup jobs while having nice visual feedback along the way.
|
|
|
|
%package -n RealtimeSync
|
|
Summary: Free backup software to synchronize files and folders
|
|
Group: Productivity/Networking/System
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description -n RealtimeSync
|
|
The primary purpose of RealtimeSync is to execute a command line each time it detects changes
|
|
in one of the monitored directories or when a directory becomes available (e. g. insert of a USB-stick).
|
|
Usually this command line will trigger a FreeFileSync batch job.
|
|
|
|
%prep
|
|
%setup -q -c %{name}-%{version}
|
|
sed -i 's/\r$//' License.txt
|
|
#chmod -x License.txt
|
|
mkdir FreeFileSync/Build/Bin
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
|
|
%build
|
|
export TMPDIR=/tmp # necessary since 11.0
|
|
export CXXFLAGS="%{optflags} -fabi-version=2 -fabi-compat-version=2"
|
|
export CC="gcc"
|
|
export CXX="g++"
|
|
|
|
%make_build -C %{name}/Source exeName=FreeFileSync
|
|
%make_build -C %{name}/Source/RealTimeSync exeName=RealTimeSync
|
|
|
|
%install
|
|
# FreeFileSync
|
|
pushd %{name}/Build
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
install -t %{buildroot}%{_bindir} Bin/%{name}
|
|
|
|
mkdir -p %{buildroot}%{_datadir}/%{name}
|
|
cp -rT Resources %{buildroot}%{_datadir}/%{name}
|
|
|
|
find "%{buildroot}%{_datadir}/%{name}" -type f -print0 | xargs -0 chmod 644
|
|
#%%make_install
|
|
|
|
# RealTimeSync
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
install -t %{buildroot}%{_bindir} Bin/RealTimeSync
|
|
#%%make_install
|
|
popd
|
|
|
|
# desktop
|
|
mkdir -p %{buildroot}%{_datadir}/pixmaps
|
|
install -p %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/
|
|
install -p %{SOURCE4} %{buildroot}%{_datadir}/pixmaps/
|
|
%suse_update_desktop_file -i %{name}
|
|
%suse_update_desktop_file -i RealTimeSync
|
|
|
|
%post
|
|
%desktop_database_post
|
|
|
|
%postun
|
|
%desktop_database_postun
|
|
|
|
%files
|
|
%license %attr(444, -, -) License.txt
|
|
%doc %attr(444, -, -) Changelog.txt
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/pixmaps/%{name}.png
|
|
%{_datadir}/%{name}/*
|
|
%dir %{_datadir}/%{name}
|
|
|
|
%files -n RealtimeSync
|
|
%license %attr(444, -, -) License.txt
|
|
%doc %attr(444, -, -) Changelog.txt
|
|
%{_bindir}/RealTimeSync
|
|
%{_datadir}/applications/RealTimeSync.desktop
|
|
%{_datadir}/pixmaps/RealTimeSync.png
|
|
|
|
%changelog
|