summaryrefslogtreecommitdiff
path: root/freefilesync
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2018-08-29 23:14:40 -0400
committerB Stack <bgstack15@gmail.com>2018-08-29 23:14:40 -0400
commit9ebbb3ea81200dac2555da12da86b986c3e11ce3 (patch)
treebb889dd785bfb6aba3c44fca0dc47fb7d8930502 /freefilesync
parentadd freefilesync (diff)
downloadstackrpms-9ebbb3ea81200dac2555da12da86b986c3e11ce3.tar.gz
stackrpms-9ebbb3ea81200dac2555da12da86b986c3e11ce3.tar.bz2
stackrpms-9ebbb3ea81200dac2555da12da86b986c3e11ce3.zip
freefilesync: use gitlab mirror for source0
upstream does not allow open downloads of source, so use my mirror which does
Diffstat (limited to 'freefilesync')
-rw-r--r--freefilesync/freefilesync.spec6
1 files changed, 4 insertions, 2 deletions
diff --git a/freefilesync/freefilesync.spec b/freefilesync/freefilesync.spec
index dad3c74..7a17269 100644
--- a/freefilesync/freefilesync.spec
+++ b/freefilesync/freefilesync.spec
@@ -9,7 +9,9 @@ Summary: A file synchronization utility
Group: Applications/File
License: GPLv3
URL: http://www.freefilesync.org/
-Source0: http://www.freefilesync.org/download/%{pkgname}_%{version}_Source.zip
+# upstream does not provide easy automatic downloads of the source, so use the mirror
+#Source0: http://www.freefilesync.org/download/%{pkgname}_%{version}_Source.zip
+Source0: https://gitlab.com/opensource-tracking/%{pkgname}/-/archive/%{version}/%{pkgname}-%{version}.tar.gz
Source1: %{pkgname}.desktop
Source2: %{prog2name}.desktop
Patch0: ffs_include_lz.patch
@@ -35,7 +37,7 @@ designed to save your time setting up and running backup jobs while
having nice visual feedback along the way.
%prep
-%setup -c -n %{pkgname}-%{version}
+%setup -n %{pkgname}-%{version}
# fix text file line endings and permissions to unix
find . ! -type d \( -name '*.c' -o -name '*.cpp' -o -name '*.h' \) \
bgstack15