1 %define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
2 %define debug_package %{nil}
4 # Prevent unwanted bytecode stripping by RPM.
5 %define __strip /bin/true
8 Version: @PACKAGE_VERSION@
10 Summary: Replacement for cron with dependencies
12 Group: Development/Libraries
14 URL: http://people.redhat.com/~rjones/whenjobs
15 Source0: http://people.redhat.com/~rjones/whenjobs/files/%{name}-%{version}.tar.gz
17 BuildRequires: ocaml >= 3.12.0
18 BuildRequires: ocaml-ocamldoc
19 BuildRequires: ocaml-findlib-devel
20 BuildRequires: ocaml-calendar-devel >= 2
21 BuildRequires: ocaml-ocamlnet-devel >= 3
22 BuildRequires: ocaml-camlp4-devel
25 # For building manual pages.
26 BuildRequires: /usr/bin/perldoc
28 # Not clear what requires this, but it is needed.
29 BuildRequires: pcre-devel, ocaml-pcre-devel
31 # Requires camlp4 and ocamlfind at runtime.
32 Requires: /usr/bin/ocamlc
33 Requires: ocaml-camlp4-devel
34 Requires: ocaml-findlib-devel
36 # Requires mailx for sending email.
41 Whenjobs is a powerful but simple cron replacement.
43 Two key advantages over cron are a simpler syntax for writing rules
44 and a powerful dependency system that lets one job depend on variables
45 set when other jobs run (allowing, for example, one job to run only
46 when another job has finished successfully).
63 rm -rf $RPM_BUILD_ROOT
65 make DESTDIR=$RPM_BUILD_ROOT install
67 # Add a prelink blacklist.
68 mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/prelink.conf.d
69 cat <<EOF >$RPM_BUILD_ROOT/%{_sysconfdir}/prelink.conf.d/%{name}.conf
70 -b %{_bindir}/whenjobs
71 -b %{_sbindir}/whenjobsd
76 rm -rf $RPM_BUILD_ROOT
80 %defattr(-,root,root,-)
82 %{_sysconfdir}/prelink.conf.d/%{name}.conf
85 %{_libdir}/whenjobs/*.cmi
86 %{_libdir}/whenjobs/pa_when.cmo
87 %{_libdir}/whenjobs/whenlib.cma
93 * Fri Feb 17 2012 Richard W.M. Jones <rjones@redhat.com> - @PACKAGE_VERSION@-@RPM_RELEASE@