mirror of https://github.com/trapexit/mergerfs.git
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.
56 lines
1.3 KiB
56 lines
1.3 KiB
Name: mergerfs
|
|
Version: __VERSION__
|
|
Release: 1%{?dist}
|
|
Summary: A featureful FUSE based union filesystem
|
|
|
|
Group: Applications/System
|
|
License: ISC
|
|
URL: https://github.com/trapexit/mergerfs
|
|
|
|
Source: mergerfs-%{version}.tar.gz
|
|
|
|
BuildRequires: gcc-c++
|
|
# rpmbuild driven by the Makefile uses git to generate a version number
|
|
BuildRequires: git
|
|
|
|
Requires: fuse
|
|
|
|
%global debug_package %{nil}
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%description
|
|
mergerfs is a union filesystem geared towards simplifying storage and
|
|
management of files across numerous commodity storage devices. It is
|
|
similar to mhddfs, unionfs, and aufs.
|
|
|
|
%build
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install PREFIX=%{_prefix} DESTDIR=%{buildroot}
|
|
|
|
%files
|
|
/usr/bin/mergerfs
|
|
/usr/bin/mergerfs-fusermount
|
|
/sbin/mount.mergerfs
|
|
%doc %{_mandir}/*
|
|
|
|
%changelog
|
|
* Fri Apr 26 2019 Antonio SJ Musumeci <trapexit@spawn.link>
|
|
- Update description
|
|
|
|
* Mon Jan 25 2016 Antonio SJ Musumeci <trapexit@spawn.link>
|
|
- Remove sbin files
|
|
|
|
* Sat Sep 05 2015 Antonio SJ Musumeci <trapexit@spawn.link>
|
|
- Include PREFIX to install
|
|
|
|
* Mon Dec 29 2014 Joe Lawrence <joe.lawrence@stratus.com>
|
|
- Tweak rpmbuild to archive current git HEAD into a tarball, then (re)build in
|
|
the rpmbuild directory -- more complicated but seemingly better suited to
|
|
generate source and debug rpms.
|
|
|
|
* Fri Jun 20 2014 Joe Lawrence <joe.lawrence@stratus.com>
|
|
- Initial rpm spec file.
|