9080bc5b58
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. OBS-URL: https://build.opensuse.org/request/show/283287 OBS-URL: https://build.opensuse.org/package/show/network/FreeFileSync?expand=0&rev=1
71 lines
2.3 KiB
RPMSpec
71 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package FreeFileSync
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
Name: FreeFileSync
|
|
Summary: Free backup software to synchronize files and folders
|
|
Version: 6.13
|
|
Release: 1
|
|
License: GPL-3.0+
|
|
Group: Productivity/Networking/System
|
|
Url: http://freefilesync.sourceforge.net/
|
|
Source0: http://sourceforge.net/projects/freefilesync/files/%{name}/%{version}/%{name}_%{version}_Source.zip
|
|
Source1: %{name}.desktop
|
|
Source2: %{name}.png
|
|
Source3: zenXml_2.1-stripped.zip
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: unzip
|
|
BuildRequires: gcc-c++ >= 4.8
|
|
BuildRequires: boost-devel >= 1.54
|
|
BuildRequires: wxWidgets-3_0-devel
|
|
BuildRequires: update-desktop-files
|
|
|
|
%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.
|
|
|
|
%prep
|
|
%setup -T -b 0 -c %{name}-%{version}
|
|
%setup -T -a 3 -c %{name}-%{version} -D
|
|
|
|
%build
|
|
cd %{name}/Source
|
|
make %{?_smp_mflags} BUILD=FreeFileSync
|
|
|
|
%install
|
|
cd %{name}/Source
|
|
%make_install
|
|
# del unneeded changelog.gz
|
|
rm -r ${RPM_BUILD_ROOT}%{_datadir}/doc/%{name}
|
|
# desktop
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/pixmaps
|
|
install -p %{SOURCE2} ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/
|
|
%suse_update_desktop_file -i %name
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/%{name}
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/pixmaps/%{name}.png
|
|
|
|
%changelog
|