From 5a18f5c9d6b17fd3196615a548ced3f2745f7891 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 08:01:13 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.2.1-1mamba;Sun Feb 06 2022] --- README.md | 2 ++ ocaml-react.spec | 71 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 ocaml-react.spec diff --git a/README.md b/README.md index a73ed45..8c27da1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ocaml-react +Declarative events and signals for OCaml. + diff --git a/ocaml-react.spec b/ocaml-react.spec new file mode 100644 index 0000000..4f1858e --- /dev/null +++ b/ocaml-react.spec @@ -0,0 +1,71 @@ +%define ocamlpck react + +Name: ocaml-react +Version: 1.2.1 +Release: 1mamba +Summary: Declarative events and signals for OCaml +Group: System/Libraries/OCaml +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://erratique.ch/software/react +Source: https://github.com/dbuenzli/react.git/v%{version}/react-%{version}.tar.bz2 +License: ISC License +## AUTOBUILDREQ-BEGIN +BuildRequires: ocaml +BuildRequires: ocaml-compiler-libs +BuildRequires: ocaml-runtime +## AUTOBUILDREQ-END +BuildRequires: opam +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 react-%{version} + +%build +ocaml 'pkg/pkg.ml' build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +opam-installer --prefix="%{buildroot}%{_prefix}" --libdir='%{_lib}/ocaml' --docdir='share/doc' + +rm -rf %{buildroot}%{_docdir}/react + +%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 +%doc CHANGES* README.md + +%changelog +* Sun Feb 06 2022 Silvan Calarco 1.2.1-1mamba +- package created using the webbuild interface