topless-vl.spec 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Name: topless
  2. Summary: Display command output on the whole screen like ``top''
  3. Version: 1.53
  4. Release: 2%{?_dist_release}
  5. License: modified BSD-style
  6. Group: Applications/System
  7. URL: http://www.ongs.net/daichi/
  8. Source0: http://people.freebsd.org/~daichi/src/topless
  9. Source1: http://people.freebsd.org/~daichi/src/topless-1.52.tar.gz
  10. Source2: LICENSE.topless
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. BuildArch: noarch
  13. BuildRequires: perl
  14. Distribution: Vine Linux
  15. Vendor: Project Vine
  16. Packager: iwaim
  17. %description
  18. TOPLESS reads various command output, displays it on the whole screen
  19. (like "less"), and periodically updates it like "top".
  20. TOPLESS can be used with almost every sort of command,
  21. but is particularly useful when used with the command
  22. to monitor the system, such as "ps", "netstat" or "fstat".
  23. %prep
  24. %setup -T -a 1 -c %{name}-%{version}
  25. %{__cp} %{SOURCE2} LICENSE
  26. %install
  27. %{__rm} -rf %{buildroot}
  28. %{__mkdir_p} %{buildroot}%{_bindir}
  29. %{__mkdir_p} %{buildroot}%{_mandir}/man1
  30. %__install -m0755 %{SOURCE0} %{buildroot}%{_bindir}
  31. pod2man topless-1.52/topless.pod > %{buildroot}%{_mandir}/man1/topless.1
  32. %clean
  33. %{__rm} -rf %{buildroot}
  34. %files
  35. %defattr(-,root,root,-)
  36. %doc LICENSE
  37. %{_bindir}/topless
  38. %{_mandir}/man1/topless.1*
  39. %changelog
  40. * Fri Sep 26 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.53-2
  41. - changed Group: Applications/System
  42. * Sun Jan 23 2011 IWAI, Masaharu <iwai@alib.jp> 1.53-1
  43. - initial release