Advertisement
Guest User

Untitled

a guest
Oct 6th, 2014
426
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. Name: shake-fs
  2. Version: 0.999
  3. Release: 1%{?dist}
  4. Summary: Defragmenter, that runs in userspace
  5.  
  6. License: GPLv3 and GFDL
  7. URL: http://www.vleu.net/shake/
  8. Source0: http://download.savannah.nongnu.org/releases/shake/shake-%{version}.tar.bz2
  9. Patch0: shake-0.999-fix-dev_t.patch
  10.  
  11. BuildRequires: cmake, libattr-devel, help2man
  12. #Requires:
  13.  
  14. �scription
  15. Shake is a defragmenter that runs in userspace, without the need of patching
  16. the kernel and while the system is used (for now, on GNU/Linux only).
  17.  
  18. There is nothing magic in that : it just works by rewriting fragmented
  19. files. But it has some heuristics that could make it more efficient than
  20. other tools, including defrag and, maybe, xfs_fsr.
  21.  
  22. %prep
  23. %setup -q -n shake-fs-%{version}
  24. %patch0 -p1
  25.  
  26. %build
  27. cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} .
  28. make %{?_smp_mflags}
  29.  
  30.  
  31. %install
  32. rm -rf $RPM_BUILD_ROOT
  33. make install DESTDIR=$RPM_BUILD_ROOT
  34.  
  35.  
  36. %files
  37. %doc GPL.txt doc/FDL.txt NEWS
  38. %{_bindir}/*
  39. %{_mandir}/man8/*
  40.  
  41.  
  42. %changelog
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement