mergerfs/mergerfs.spec

57 lines
1.3 KiB
RPMSpec
Raw Normal View History

2015-09-06 05:56:45 +08:00
Name: mergerfs
Version: __VERSION__
Release: 1%{?dist}
2020-02-21 21:01:49 +08:00
Summary: A featureful FUSE based union filesystem
2015-09-06 05:56:45 +08:00
Group: Applications/System
License: ISC
2015-09-06 05:56:45 +08:00
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
2015-10-13 11:51:52 +08:00
Requires: fuse
2015-09-06 05:56:45 +08:00
2019-04-25 04:19:01 +08:00
%global debug_package %{nil}
2015-09-06 05:56:45 +08:00
%prep
%setup -q
%description
2019-04-25 04:19:01 +08:00
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.
2015-09-06 05:56:45 +08:00
%build
make %{?_smp_mflags}
%install
make install PREFIX=%{_prefix} DESTDIR=%{buildroot}
%files
2020-06-30 22:41:17 +08:00
/usr/bin/mergerfs
/usr/bin/mergerfs-fusermount
/sbin/mount.mergerfs
2015-09-06 05:56:45 +08:00
%doc %{_mandir}/*
%changelog
2019-04-25 04:19:01 +08:00
* Fri Apr 26 2019 Antonio SJ Musumeci <trapexit@spawn.link>
- Update description
2016-01-25 22:42:27 +08:00
* Mon Jan 25 2016 Antonio SJ Musumeci <trapexit@spawn.link>
- Remove sbin files
2015-09-06 05:56:45 +08:00
* 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.