package created using the webbuild interface [release 0.16.0-1mamba;Wed Jul 12 2023]

This commit is contained in:
Silvan Calarco 2024-01-06 08:02:48 +01:00
parent 39f5ab9c84
commit d5896e22b5
2 changed files with 78 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# ocaml-splittable_random
PRNG that can be split into independent streams.

View File

@ -0,0 +1,76 @@
%define ocamlpck splittable_random
Name: ocaml-splittable_random
Version: 0.16.0
Release: 1mamba
Summary: PRNG that can be split into independent streams
Group: System/Libraries/OCaml
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/janestreet/splittable_random
## GITSOURCE https://github.com/janestreet/splittable_random.git v0.16.0
Source: https://github.com/janestreet/splittable_random.git/v%{version}/splittable_random-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ocaml-base-devel
BuildRequires: ocaml-ppx_assert-devel
BuildRequires: ocaml-ppx_bench-devel
BuildRequires: ocaml-ppx_inline_test-devel
BuildRequires: ocaml-ppx_sexp_conv-devel
BuildRequires: ocaml-runtime
BuildRequires: ocaml-sexplib0-devel
## AUTOBUILDREQ-END
BuildRequires: dune
BuildRequires: ocaml
BuildRequires: ocaml-findlib
%description
%{summary}.
%package devel
Group: Development/Libraries/OCaml
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel
This package contains libraries and signature files for developing applications that use %{name}.
%debug_package
%prep
%setup -q -n splittable_random-%{version}
%build
dune build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
DESTDIR=%{buildroot} dune install --prefix "/usr" --libdir "%{_libdir}/ocaml"
rm -rf %{buildroot}/usr/doc
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%dir %{_libdir}/ocaml/%{ocamlpck}
%{_libdir}/ocaml/%{ocamlpck}/*
%exclude %{_libdir}/ocaml/%{ocamlpck}/*.a
%exclude %{_libdir}/ocaml/%{ocamlpck}/*.cmx
%exclude %{_libdir}/ocaml/%{ocamlpck}/*.cmxa
%exclude %{_libdir}/ocaml/%{ocamlpck}/*.mli
%doc LICENSE*
%files devel
%defattr(-,root,root)
%{_libdir}/ocaml/%{ocamlpck}/*.a
%{_libdir}/ocaml/%{ocamlpck}/*.cmx
%{_libdir}/ocaml/%{ocamlpck}/*.cmxa
%{_libdir}/ocaml/%{ocamlpck}/*.mli
%changelog
* Wed Jul 12 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.16.0-1mamba
- package created using the webbuild interface