Advertisement
Guest User

tekhammer

a guest
Oct 7th, 2009
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. # easyeditor
  2.  
  3. Name: easyedit
  4. Summary: Easy Text Editor
  5. Packager: Spiro Harvey <[email protected]>
  6. URL: http://wtf.geek.nz/
  7. Group: Editors
  8. License: BSD
  9. Version: 1.5.0
  10. Release: 1.tek
  11.  
  12. BuildRequires: ncurses-devel
  13. Requires: ncurses
  14. BuildRoot: %{_tmppath}/%{name}-%{version}
  15.  
  16. #Source: easyedit-%{version}.src.tgz
  17. Source: http://mahon.cwx.net/sources/easyedit-%{version}.src.tgz
  18.  
  19.  
  20. %description
  21. EE is a an easy to use text editor. Intended to be usable with
  22. little or no instruction. Provides a terminal (curses based)
  23. interface and features pop-up menus.
  24.  
  25. %prep
  26. %setup -q
  27.  
  28. %build
  29. make
  30.  
  31. %install
  32. rm -rf %{buildroot}
  33. mkdir -p %{buildroot}/usr/local/bin/
  34. mkdir -p %{buildroot}/usr/local/share/man/man1/
  35. %{__install} -m 0755 ee %{buildroot}/usr/local/bin/ee
  36. %{__install} -m 0644 ee.1 %{buildroot}/usr/local/share/man/man1/ee.1
  37.  
  38.  
  39. %files
  40. %defattr(755,root,root)
  41. /usr/local/bin/ee
  42. /usr/local/share/man/man1/ee.1
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement