Make documentation conditional.

This commit is contained in:
Richard W.M. Jones 2021-03-01 16:17:07 +00:00
parent dfb065f174
commit a4fb8dc0b9
1 changed files with 13 additions and 0 deletions

View File

@ -2,6 +2,10 @@
%global debug_package %{nil} %global debug_package %{nil}
%endif %endif
# Documentation adds a circular dependency, so by
# default we build without.
%bcond_with doc
%global srcname mew %global srcname mew
Name: ocaml-%{srcname} Name: ocaml-%{srcname}
@ -15,7 +19,9 @@ Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz
BuildRequires: ocaml >= 4.02.3 BuildRequires: ocaml >= 4.02.3
BuildRequires: ocaml-dune >= 1.1.0 BuildRequires: ocaml-dune >= 1.1.0
%if %{with doc}
BuildRequires: ocaml-odoc BuildRequires: ocaml-odoc
%endif
BuildRequires: ocaml-result-devel BuildRequires: ocaml-result-devel
BuildRequires: ocaml-trie-devel BuildRequires: ocaml-trie-devel
@ -43,13 +49,17 @@ files for developing applications that use %{name}.
%build %build
dune build %{?_smp_mflags} dune build %{?_smp_mflags}
%if %{with doc}
dune build %{?_smp_mflags} @doc dune build %{?_smp_mflags} @doc
%endif
%install %install
dune install --destdir=%{buildroot} dune install --destdir=%{buildroot}
%if %{with doc}
# We do not want the dune markers # We do not want the dune markers
find _build/default/_doc/_html -name .dune-keep -delete find _build/default/_doc/_html -name .dune-keep -delete
%endif
# We do not want the ml files # We do not want the ml files
find %{buildroot}%{_libdir}/ocaml -name \*.ml -delete find %{buildroot}%{_libdir}/ocaml -name \*.ml -delete
@ -78,7 +88,9 @@ find %{buildroot}%{_libdir}/ocaml -name \*.cmxs -exec chmod a+x {} \+
%endif %endif
%files devel %files devel
%if %{with doc}
%doc _build/default/_doc/* %doc _build/default/_doc/*
%endif
%{_libdir}/ocaml/%{srcname}/META %{_libdir}/ocaml/%{srcname}/META
%{_libdir}/ocaml/%{srcname}/dune-package %{_libdir}/ocaml/%{srcname}/dune-package
%{_libdir}/ocaml/%{srcname}/opam %{_libdir}/ocaml/%{srcname}/opam
@ -92,6 +104,7 @@ find %{buildroot}%{_libdir}/ocaml -name \*.cmxs -exec chmod a+x {} \+
%changelog %changelog
* Mon Mar 1 15:56:26 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.1.0-8 * Mon Mar 1 15:56:26 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.1.0-8
- OCaml 4.12.0 build - OCaml 4.12.0 build
- Make documentation conditional.
* Tue Feb 2 2021 Richard W.M. Jones <rjones@redhat.com> - 0.1.0-7 * Tue Feb 2 2021 Richard W.M. Jones <rjones@redhat.com> - 0.1.0-7
- Bump and rebuild for updated ocaml-camomile dep (RHBZ#1923853). - Bump and rebuild for updated ocaml-camomile dep (RHBZ#1923853).