You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
929 B
35 lines
929 B
Name: restic
|
|
Version: 0.12.0
|
|
Release: itix1
|
|
Summary: Fast, secure, efficient backup program
|
|
License: BSD
|
|
Source0: https://github.com/restic/%{name}/releases/download/v%{version}/%{name}_%{version}_linux_amd64.bz2
|
|
ExclusiveArch: x86_64
|
|
|
|
%description
|
|
|
|
restic is a backup program that is fast, efficient and secure. It supports the
|
|
three major operating systems (Linux, macOS, Windows) and a few smaller ones
|
|
(FreeBSD, OpenBSD).
|
|
|
|
# Since we don't recompile from source, disable the build_id checking
|
|
%global _missing_build_ids_terminate_build 0
|
|
%global _build_id_links none
|
|
%global debug_package %{nil}
|
|
|
|
%prep
|
|
%setup -q -c -T
|
|
bunzip2 -c %{S:0} > restic
|
|
|
|
%build
|
|
|
|
%install
|
|
install -D restic %{buildroot}/opt/restic/bin/restic
|
|
|
|
%files
|
|
%defattr(0644, root, root, 0755)
|
|
%attr(0755, root, root) /opt/restic/bin/restic
|
|
|
|
%changelog
|
|
* Mon Feb 22 2021 Nicolas MASSE <nicolas.masse@itix.fr> - 0.12.0-itix1
|
|
- First release
|
|
|