-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Name: snapraid | ||
Summary: Disk array backup for many large rarely-changed files | ||
Version: 12.2 | ||
Release: 3%{?dist} | ||
License: GPLv3+ | ||
Group: Applications/System | ||
URL: http://www.snapraid.it/ | ||
Source: https://github.com/amadvance/snapraid/releases/download/v%{version}/snapraid-%{version}.tar.gz | ||
BuildRequires: gcc | ||
|
||
%description | ||
SnapRAID is a backup program for disk arrays. It stores parity | ||
information of your data and it's able to recover from up to six disk | ||
failures. SnapRAID is mainly targeted for a home media center, with a | ||
lot of big files that rarely change. | ||
|
||
%prep | ||
%setup -q | ||
|
||
%build | ||
%configure | ||
make %{?_smp_mflags} | ||
|
||
%check | ||
make check | ||
|
||
%install | ||
make install DESTDIR=%{buildroot} | ||
|
||
%files | ||
%doc COPYING AUTHORS HISTORY README | ||
%{_bindir}/snapraid | ||
%{_mandir}/man1/snapraid.1* | ||
|
||
%changelog | ||
|