75 lines
1.8 KiB
Plaintext
75 lines
1.8 KiB
Plaintext
%define ocamlpck @pck_name_tail@
|
|
|
|
Name: @pck_name@
|
|
Version: @pck_version@
|
|
Release: @spec_first_release@@DISTRO_rpm@
|
|
Summary: ...
|
|
Group: System/Libraries/OCaml
|
|
Vendor: @VENDOR@
|
|
Distribution: @DISTRO@
|
|
Packager: @packager_fullname@ <@packager_email@>
|
|
URL: ...
|
|
Source: ...
|
|
License: ...
|
|
## AUTOBUILDREQ-BEGIN
|
|
## note: run 'autospec -u -a6 @pck_name@' to get the list of build requirements.
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: dune
|
|
BuildRequires: ocaml
|
|
BuildRequires: ocaml-findlib
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
@if:pck_devel
|
|
%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}.
|
|
@fi:pck_devel
|
|
|
|
%debug_package
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
dune build
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
DESTDIR=%{buildroot} dune install --prefix "%{_prefix}" --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
|
|
%{_libdir}/ocaml/stublibs/*.so*
|
|
%doc LICENSE*
|
|
|
|
@if:pck_devel
|
|
%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
|
|
@fi:pck_devel
|
|
|
|
%changelog
|
|
* @spec_changelog_date@ @packager_fullname@ <@packager_email@> @pck_version@-@spec_first_release@@DISTRO_rpm@
|
|
- @spec_changelog_comment@
|