Advertisement
ndowens

Untitled

Aug 3rd, 2011
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Name:       mhddfs
  2. Summary:    Fuse-based file system for unifying several mount points into one
  3. Version:    0.1.38
  4. Release:    3%{?dist}
  5. License:    GPLv3+
  6. URL:        http://mhddfs.uvw.ru/
  7. Source:     http://mhddfs.uvw.ru/downloads/%{name}_%{version}.tar.gz
  8.  
  9. BuildRequires:  fuse-devel
  10. BuildRequires:  libattr-devel
  11.  
  12. %description
  13. This FUSE-based file system allows mount points (or directories) to be combined,
  14. simulating a single big volume which can merge several hard drives or remote
  15. file systems.  It is like unionfs, but can choose the drive with the most free
  16. space to create new files on, and can move data transparently between drives.
  17.  
  18. %prep
  19. %setup -q
  20.  
  21. %build
  22. make
  23.  
  24. %install
  25. rm -rf $RPM_BUILD_ROOT
  26. install -d $RPM_BUILD_ROOT/%{_bindir}
  27. install -d $RPM_BUILD_ROOT/%{_mandir}/man1
  28. install -m755 %{name} $RPM_BUILD_ROOT/%{_bindir}/%{name}
  29. install -m644 %{name}.1 $RPM_BUILD_ROOT/%{_mandir}/man1/%{name}.1
  30.  
  31. %clean
  32. rm -rf $RPM_BUILD_ROOT
  33.  
  34. %files
  35. %doc README README.ru.UTF-8 LICENSE ChangeLog COPYING
  36. %{_bindir}/%{name}
  37. %{_mandir}/man1/%{name}.1*
  38.  
  39. %changelog
  40. * Wed Aug 3 2011 Jameson Pugh <imntreal@gmail.com> - 0.1.38-2
  41. - Added libattr-devel as a build requirement
  42.  
  43. * Tue Aug 2 2011 Jameson Pugh <imntreal@gmail.com> - 0.1.38-1
  44. - Initial release
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement