summaryrefslogtreecommitdiff
path: root/freefilesync/freefilesync.spec
diff options
context:
space:
mode:
Diffstat (limited to 'freefilesync/freefilesync.spec')
-rw-r--r--freefilesync/freefilesync.spec15
1 files changed, 11 insertions, 4 deletions
diff --git a/freefilesync/freefilesync.spec b/freefilesync/freefilesync.spec
index adb5949..642a8b5 100644
--- a/freefilesync/freefilesync.spec
+++ b/freefilesync/freefilesync.spec
@@ -14,8 +14,8 @@
%define min_openssl >= 1.1.0h
%endif
Name: freefilesync
-Version: 10.9
-Release: 2%{?dist}
+Version: 10.10
+Release: 1%{?dist}
Summary: A file synchronization utility
Group: Applications/File
@@ -32,6 +32,7 @@ Patch2: ffs_no_wx311.patch
Patch3: ffs_sftp.patch
Patch4: ffs_fedora.patch
Patch5: ffs_el.patch
+Patch6: ffs_libssh2.patch
Packager: B Stack <bgstack15@gmail.com>
# WARNING: the build will FAIL if you have wxGTK3-devel installed. Only wxGTK2-devel should be on the build system.
@@ -40,11 +41,12 @@ BuildRequires: compat-wxGTK3-gtk2-devel
BuildRequires: desktop-file-utils
BuildRequires: gcc-c++
BuildRequires: ImageMagick
+BuildRequires: libcurl-devel %{min_libcurl}
+BuildRequires: libssh2-devel %{min_libssh2}
+BuildRequires: patch
BuildRequires: pkgconfig(gtk+-2.0)
BuildRequires: pkgconfig(libselinux)
BuildRequires: pkgconfig(zlib)
-BuildRequires: libcurl-devel %{min_libcurl}
-BuildRequires: libssh2-devel %{min_libssh2}
%if 0%{?el6}%{?el7}
BuildRequires: wxGTK-devel
BuildRequires: %{scl_buildreq}
@@ -82,6 +84,7 @@ find . ! -type d \( -name '*.c' -o -name '*.cpp' -o -name '*.h' \) \
# use the fedora patch
%patch4 -p1
%endif
+%patch6 -p1
# custom build parameters for packaging application in rpm
# fedora provides build_cxxflags, which is really just optflags
@@ -179,6 +182,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%ghost %config %attr(666, -, -) %{_datadir}/%{name}/GlobalSettings.xml
%changelog
+* Tue Feb 12 2019 B Stack <bgstack15@gmail.com> - 10.10-1
+- version bump
+- add libssh2 patch from AUR
+
* Tue Feb 12 2019 B Stack <bgstack15@gmail.com> - 10.9-1
- version bump
- add manual install that is now absent from upstream
bgstack15