Advertisement
ndowens

Untitled

Jul 20th, 2011
2,494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Name:       worker
  2. Version:    2.18.0
  3. Release:    4%{?dist}
  4. Summary:    File manager for the X11
  5. License:    GPLv2+
  6. URL:        http://boomerangsworld.de/worker
  7. Source0:    http://www.boomerangsworld.de/cms/%{name}/downloads/%{name}-%{version}.tar.gz
  8. BuildRequires:  libX11-devel
  9.  
  10. %description
  11. A X11 file-manager that features low requirements and easy to access archives
  12.  
  13. %prep
  14. %setup -q
  15. pushd man/fr
  16. #Fix French Man page (UTF-8)
  17. iconv -f ISO-8859-1 -t UTF-8 worker.1 > file.new && \
  18. touch -r worker.1 file.new && \
  19. mv file.new worker.1
  20. popd
  21.  
  22. #Fix Italian Man page (UTF-8)
  23. pushd man/it
  24. iconv -f ISO-8859-1 -t UTF-8 worker.1 > file.new && \
  25. touch -r worker.1 file.new && \
  26. mv file.new worker.1
  27. popd
  28. %build
  29. %configure
  30. make %{?_smp_mflags}
  31.  
  32. %install
  33. rm -rf %{buildroot}
  34. make install DESTDIR=%{buildroot}
  35.  
  36.  
  37. %files
  38. %docdir %{_mandir}/*
  39. %{_datadir}/applications/*
  40. %{_mandir}/man1/worker.1.gz
  41. %{_mandir}/fr/*
  42. %{_mandir}/it/*
  43. %{_datadir}/pixmaps/*
  44. %{_datadir}/worker/*
  45. %{_bindir}/worker
  46.  
  47.  
  48.  
  49. %changelog
  50. *Tue Jul 19 2011 Nathan Owe <ndowens04 at yahoo.com> 2.18.0-4
  51. -Convert Man pages to UTF-8
  52. *Mon Jul 18 2011 Nathan Owe <ndowens04 at yahoo.com> 2.18.0-3
  53. -Fixed Directory Permission problem
  54. *Mon Jul 18 2011 Nathan Owe <ndowens04 at yahoo.com> 2.18.0-2
  55. -Removed Requires
  56. *Sat Jul 16 2011 Nathan Owe <ndowens04 at yahoo.com> 2.18.0-1
  57. -Inital Release
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement