]> git.pld-linux.org Git - packages/ocaml-num.git/commitdiff
- new
authorJan Rękorajski <baggins@pld-linux.org>
Mon, 29 Mar 2021 18:59:09 +0000 (20:59 +0200)
committerJan Rękorajski <baggins@pld-linux.org>
Mon, 29 Mar 2021 18:59:09 +0000 (20:59 +0200)
ocaml-num.spec [new file with mode: 0644]

diff --git a/ocaml-num.spec b/ocaml-num.spec
new file mode 100644 (file)
index 0000000..bc6dc35
--- /dev/null
@@ -0,0 +1,88 @@
+#
+# Conditional build:
+%bcond_without ocaml_opt       # skip building native optimized binaries (bytecode is always built)
+
+# not yet available on x32 (ocaml 4.02.1), update when upstream will support it
+%ifnarch %{ix86} %{x8664} %{arm} aarch64 ppc sparc sparcv9
+%undefine      with_ocaml_opt
+%endif
+
+%if %{without ocaml_opt}
+%define                _enable_debug_packages  0
+%endif
+
+%define                module  num
+Summary:       Legacy Num library for arbitrary-precision integer and rational arithmetic
+Name:          ocaml-num
+Version:       1.4
+Release:       1
+License:       LGPLv2+ with exceptions
+Source0:       https://github.com/ocaml/num/archive/v%{version}/%{module}-%{version}.tar.gz
+# Source0-md5: cda2b727e116a0b6a9c03902cc4b2415
+URL:           https://github.com/ocaml/num
+BuildRequires: ocaml >= 1:4.0
+BuildRequires: ocaml-findlib-devel
+%requires_eq   ocaml-runtime
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This library implements arbitrary-precision arithmetic on big integers
+and on rationals.
+
+This is a legacy library. It used to be part of the core OCaml
+distribution (in otherlibs/num) but is now distributed separately. New
+applications that need arbitrary-precision arithmetic should use the
+Zarith library (https://github.com/ocaml/Zarith) instead of the Num
+library, and older applications that already use Num are encouraged to
+switch to Zarith. Zarith delivers much better performance than Num and
+has a nicer API.
+
+%package        devel
+Summary:       Development files for %{name}
+Requires:      %{name} = %{version}-%{release}
+
+%description    devel
+The %{name}-devel package contains libraries and signature files for
+developing applications that use %{name}.
+
+%prep
+%setup -q -n num-%{version}
+
+%build
+%{__make} %{?_smp_mflags} all
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT \
+       OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc Changelog README.md
+%attr(755,root,root) %{_libdir}/ocaml/stublibs/*.so
+%dir %{_libdir}/ocaml/%{module}
+%{_libdir}/ocaml/%{module}/META
+%dir %{_libdir}/ocaml/num-top
+%{_libdir}/ocaml/num-top/META
+%{_libdir}/ocaml/*.cma
+%{_libdir}/ocaml/num-top/num_top.cma
+%if %{with ocaml_opt}
+%attr(755,root,root) %{_libdir}/ocaml/*.cmxs
+%endif
+
+%files devel
+%defattr(644,root,root,755)
+%{_libdir}/ocaml/*.cmi
+%{_libdir}/ocaml/*.cmti
+%{_libdir}/ocaml/*.mli
+%if %{with ocaml_opt}
+%{_libdir}/ocaml/*.[ao]
+%{_libdir}/ocaml/*.cmx
+%{_libdir}/ocaml/*.cmxa
+%endif
+%{_libdir}/ocaml/num-top/*.cmi
This page took 0.077954 seconds and 4 git commands to generate.