Olaf Hering
2ee134faee
see included CHANGES.md for details OBS-URL: https://build.opensuse.org/package/show/devel:languages:ocaml/ocaml-dune?expand=0&rev=46
91 lines
2.5 KiB
RPMSpec
91 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package ocaml-dune
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: ocaml-dune
|
|
Version: 2.3.1
|
|
Release: 0
|
|
%{?ocaml_preserve_bytecode}
|
|
Summary: A composable build system for OCaml
|
|
License: MIT
|
|
Group: Development/Languages/OCaml
|
|
Url: https://opam.ocaml.org/packages/dune
|
|
Source: %{name}-%{version}.tar.xz
|
|
Patch0: dune.patch
|
|
Requires: ocamlfind(compiler-libs)
|
|
BuildRequires: ocaml(ocaml_base_version) >= 4.07
|
|
BuildRequires: ocamlfind(compiler-libs)
|
|
BuildRequires: ocaml-rpm-macros >= 20200220
|
|
|
|
%description
|
|
A composable build system for OCaml
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Languages/OCaml
|
|
Requires: %{name} = %{version}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and signature files for
|
|
developing applications that use %{name}.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
ocaml configure.ml '--libdir=%{ocaml_standard_library}' '--mandir=%{_mandir}'
|
|
if bash -c '
|
|
%make_build release-with-libraries
|
|
'
|
|
then
|
|
exit 0
|
|
fi
|
|
ocamlc -config
|
|
cat _olh/default/otherlibs/configurator/src/flags/flags.sexp
|
|
exit 1
|
|
|
|
%install
|
|
make PREFIX='%{_prefix}' 'LIBDIR=%{ocaml_standard_library}' 'DESTDIR=%{buildroot}' install-with-libraries
|
|
%if 0
|
|
if pushd _boot/default/bin
|
|
then
|
|
ln -svb main.exe dune
|
|
export PATH="`readlink -f \"$PWD\"`:$PATH"
|
|
popd
|
|
fi
|
|
OCAML_DUNE_INSTALL_ARGS='dune --build-dir _boot'
|
|
%ocaml_dune_install
|
|
%else
|
|
rm -rfv %{buildroot}%{_prefix}/doc ; \
|
|
if test -d %{buildroot}%{_prefix}/man ; then \
|
|
mkdir -vp %{buildroot}%{_datadir} ; \
|
|
mv -vt %{buildroot}%{_datadir} %{buildroot}%{_prefix}/man ; \
|
|
fi
|
|
%endif
|
|
%ocaml_create_file_list
|
|
|
|
%files -f %{name}.files
|
|
%doc CHANGES.md README.md
|
|
%doc doc/*.rst
|
|
%{_bindir}/*
|
|
%{_mandir}/*/*
|
|
%{_datadir}/emacs
|
|
|
|
%files devel -f %{name}.files.devel
|
|
|
|
%changelog
|