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.

37 lines
835 B

  1. Name: mergerfs
  2. Version: %{pkg_version}
  3. Release: 1%{?dist}
  4. Summary: A FUSE union filesystem
  5. Group: Applications/System
  6. License: MIT
  7. URL: https://github.com/trapexit/mergerfs
  8. BuildRequires: gcc-c++
  9. BuildRequires: libattr-devel
  10. BuildRequires: fuse-devel
  11. # rpmbuild driven by the Makefile uses git to generate a version number
  12. BuildRequires: git
  13. # pandoc pulls in ~60 packages (87M installed) from EPEL :(
  14. BuildRequires: pandoc
  15. Requires: fuse-libs
  16. %description
  17. mergerfs is similar to mhddfs, unionfs, and aufs. Like mhddfs in that it too
  18. uses FUSE. Like aufs in that it provides multiple policies for how to handle
  19. behavior.
  20. %build
  21. make %{?_smp_mflags}
  22. %install
  23. make install DESTDIR=%{buildroot}
  24. %files
  25. %{_bindir}/*
  26. %doc %{_mandir}/*
  27. %changelog
  28. * Fri Jun 20 2014 Joe Lawrence <joe.lawrence@stratus.com>
  29. - Initial rpm spec file.