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

This commit is contained in:
Silvan Calarco 2024-01-06 07:59:14 +01:00
parent 2d60e1f8cc
commit bf9172cfa8
2 changed files with 87 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# ocaml-ppx_jane # ocaml-ppx_jane
Standard Jane Street ppx rewriters.

85
ocaml-ppx_jane.spec Normal file
View File

@ -0,0 +1,85 @@
%define ocamlpck ppx_jane
Name: ocaml-ppx_jane
Version: 0.16.0
Release: 1mamba
Summary: Standard Jane Street ppx rewriters
Group: System/Libraries/OCaml
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/janestreet/ppx_jane
Source: https://github.com/janestreet/ppx_jane.git/v%{version}/ppx_jane-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
BuildRequires: dune
BuildRequires: ocaml
BuildRequires: ocaml-findlib
BuildRequires: ocaml-ppx_bin_prot-devel
BuildRequires: ocaml-ppx_disable_unused_warnings-devel
BuildRequires: ocaml-ppx_fixed_literal-devel
BuildRequires: ocaml-ppx_ignore_instrumentation-devel
BuildRequires: ocaml-ppx_optional-devel
BuildRequires: ocaml-ppx_pipebang-devel
BuildRequires: ocaml-ppx_stable-devel
BuildRequires: ocaml-ppx_typerep_conv-devel
BuildRequires: ocaml-ppx_tydi-devel
Requires: ocaml-ppx_bin_prot
Requires: ocaml-ppx_disable_unused_warnings
Requires: ocaml-ppx_fixed_literal
Requires: ocaml-ppx_ignore_instrumentation
Requires: ocaml-ppx_optional
Requires: ocaml-ppx_pipebang
Requires: ocaml-ppx_stable
Requires: ocaml-ppx_typerep_conv
Requires: ocaml-ppx_tydi
%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 ppx_jane-%{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)
%{_bindir}/ppx-jane
%dir %{_libdir}/ocaml/%{ocamlpck}
%{_libdir}/ocaml/%{ocamlpck}/*
%exclude %{_libdir}/ocaml/%{ocamlpck}/*.a
%exclude %{_libdir}/ocaml/%{ocamlpck}/*.cmx
%exclude %{_libdir}/ocaml/%{ocamlpck}/*.cmxa
%doc LICENSE*
%files devel
%defattr(-,root,root)
%{_libdir}/ocaml/%{ocamlpck}/*.a
%{_libdir}/ocaml/%{ocamlpck}/*.cmx
%{_libdir}/ocaml/%{ocamlpck}/*.cmxa
%changelog
* Sun Jul 09 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.16.0-1mamba
- package created using the webbuild interface