76 lines
2.0 KiB
RPMSpec
76 lines
2.0 KiB
RPMSpec
|
%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 <silvan.calarco@mambasoft.it>
|
||
|
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 <silvan.calarco@mambasoft.it> 1.0.3-1mamba
|
||
|
- package created using the webbuild interface
|