cronexec-vl.spec 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. %define version 0.90
  2. %define release 0vl1
  3. Name: cronexec
  4. Version: %{version}
  5. Release: %{release}
  6. Group: System Environment/Daemons
  7. Source: http://viper.netfort.gr.jp/user/tosihisa/cronexec/cronexec-%{version}.tar.gz
  8. Url: http://viper.netfort.gr.jp/user/tosihisa/cronexec/
  9. Copyright: GPL2
  10. Vendor: Project Vine
  11. Distribution: Vine Linux
  12. Packager: Satoshi MACHINO <machino@vinelinux.org>
  13. BuildRoot: %{_tmppath}/%{name}-root
  14. Summary: cronexec - to excute command at intervals of reserved time
  15. Summary(ja): cronexec - 指定した時間間隔でコマンドを実行するプログラム
  16. #Obsoletes: vixie-cron
  17. %description
  18. cronexec is simple program to execute command at intervals of reserved time.
  19. it can define interval of second.
  20. %description -l ja
  21. cronexec は、指定した秒間隔毎に、コマンドを実行する、ただそれだけのプログラムです。
  22. %prep
  23. rm -rf ${RPM_BUILD_ROOT}
  24. %setup
  25. %build
  26. make
  27. %install
  28. make PREFIX=${RPM_BUILD_ROOT}%{_sbindir} install
  29. %clean
  30. rm -rf ${RPM_BUILD_ROOT}
  31. %files
  32. %defattr(-,root,root)
  33. %doc README.jp COPYING
  34. %{_sbindir}/*
  35. %changelog
  36. * Sun Jun 17 2001 Satoshi MACHINO <machino@vinelinux.org> 0.9-0vl1
  37. - updated
  38. * Thu May 17 2001 Satoshi MACHINO <machino@vinelinux.org> 0.19-0vl2
  39. - fixed Copyright: tag
  40. * Thu May 17 2001 Satoshi MACHINO <machino@vinelinux.org> 0.19-0vl1
  41. - updated 0.19
  42. added COPYING and some code fixes
  43. * Wed May 16 2001 Satoshi MACHINO <machino@vinelinux.org> 0.14-0vl2
  44. - added Vendor and Distribution
  45. * Wed May 16 2001 Satoshi MACHINO <machino@vinelinux.org> 0.14-0vl1
  46. - first release