1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- %define version 0.90
- %define release 0vl1
- Name: cronexec
- Version: %{version}
- Release: %{release}
- Group: System Environment/Daemons
- Source: http://viper.netfort.gr.jp/user/tosihisa/cronexec/cronexec-%{version}.tar.gz
- Url: http://viper.netfort.gr.jp/user/tosihisa/cronexec/
- Copyright: GPL2
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Satoshi MACHINO <machino@vinelinux.org>
- BuildRoot: %{_tmppath}/%{name}-root
- Summary: cronexec - to excute command at intervals of reserved time
- Summary(ja): cronexec - 指定した時間間隔でコマンドを実行するプログラム
- #Obsoletes: vixie-cron
- %description
- cronexec is simple program to execute command at intervals of reserved time.
- it can define interval of second.
- %description -l ja
- cronexec は、指定した秒間隔毎に、コマンドを実行する、ただそれだけのプログラムです。
- %prep
- rm -rf ${RPM_BUILD_ROOT}
- %setup
- %build
- make
- %install
- make PREFIX=${RPM_BUILD_ROOT}%{_sbindir} install
- %clean
- rm -rf ${RPM_BUILD_ROOT}
- %files
- %defattr(-,root,root)
- %doc README.jp COPYING
- %{_sbindir}/*
- %changelog
- * Sun Jun 17 2001 Satoshi MACHINO <machino@vinelinux.org> 0.9-0vl1
- - updated
- * Thu May 17 2001 Satoshi MACHINO <machino@vinelinux.org> 0.19-0vl2
- - fixed Copyright: tag
- * Thu May 17 2001 Satoshi MACHINO <machino@vinelinux.org> 0.19-0vl1
- - updated 0.19
- added COPYING and some code fixes
- * Wed May 16 2001 Satoshi MACHINO <machino@vinelinux.org> 0.14-0vl2
- - added Vendor and Distribution
- * Wed May 16 2001 Satoshi MACHINO <machino@vinelinux.org> 0.14-0vl1
- - first release
|