From 06c4f9b6779eeb64c47f32635239fcbca6b0d7d3 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 08:04:34 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.0.3-1mamba;Wed Jul 12 2023] --- README.md | 2 ++ ocaml-uutf.spec | 75 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 ocaml-uutf.spec diff --git a/README.md b/README.md index 7323fac..f41bf3c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ocaml-uutf +Non-blocking streaming Unicode codec for OCaml. + diff --git a/ocaml-uutf.spec b/ocaml-uutf.spec new file mode 100644 index 0000000..c50f6e4 --- /dev/null +++ b/ocaml-uutf.spec @@ -0,0 +1,75 @@ +%define ocamlpck uutf + +Name: ocaml-uutf +Version: 1.0.3 +Release: 1mamba +Summary: Non-blocking streaming Unicode codec for OCaml +Group: System/Libraries/OCaml +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/dbuenzli/uutf +Source: https://github.com/dbuenzli/uutf.git/v%{version}/uutf-%{version}.tar.bz2 +License: ISC +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: ocaml +BuildRequires: ocaml-runtime +## AUTOBUILDREQ-END +BuildRequires: dune +BuildRequires: ocaml +BuildRequires: ocaml-findlib +BuildRequires: ocaml-cmdliner-devel +Requires: ocaml-cmdliner + +%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 uutf-%{version} + +%build +ocaml 'pkg/pkg.ml' build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +opam-installer --prefix="%{buildroot}%{_prefix}" --libdir='%{buildroot}%{_libdir}/ocaml' --docdir='share/doc' + +rm -rf %{buildroot}/usr/doc + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/utftrip +%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 +%dir %{_docdir}/uutf +%{_docdir}/uutf/* + +%changelog +* Wed Jul 12 2023 Silvan Calarco 1.0.3-1mamba +- package created using the webbuild interface