ocaml-libvirt/ocaml-libvirt.spec

66 lines
1.6 KiB
RPMSpec
Raw Normal View History

2020-02-27 15:55:37 +08:00
Name: ocaml-libvirt
2023-09-20 11:40:26 +08:00
Version: 0.6.1.7
Release: 1
2020-02-27 15:55:37 +08:00
Summary: OCaml binding for libvirt
License: LGPLv2+
URL: http://libvirt.org/ocaml/
2023-09-20 11:40:26 +08:00
Source0: https://gitlab.com/libvirt/libvirt-ocaml/-/archive/%{version}/libvirt-ocaml-v%{version}.tar.gz
2020-02-27 15:55:37 +08:00
2023-09-20 11:40:26 +08:00
BuildRequires: ocaml >= 3.10.0 ocaml-ocamldoc ocaml-findlib-devel autoconf
BuildRequires: libvirt-devel >= 0.2.1 perl-interpreter gawk make automake
2020-02-27 15:55:37 +08:00
%description
OCaml bindings for libvirt, allowing you to write OCaml programs and scripts which control virtualisation features.
%package devel
Summary: Development files for ocaml-libvirt
Requires: %{name} = %{version}-%{release}
%description devel
OCaml bindings for libvirt, allowing you to write OCaml programs and scripts which control virtualisation features.
%prep
2023-09-20 11:40:26 +08:00
%autosetup -n libvirt-ocaml-v%{version} -p1
2020-02-27 15:55:37 +08:00
%build
2023-09-20 11:40:26 +08:00
unset MAKEFLAGS
autoreconf -i
2020-02-27 15:55:37 +08:00
%configure
2023-09-20 11:40:26 +08:00
make
2020-02-27 15:55:37 +08:00
%install
export DESTDIR=$RPM_BUILD_ROOT
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
install -d $OCAMLFIND_DESTDIR $OCAMLFIND_DESTDIR/stublibs
install -d $RPM_BUILD_ROOT%{_bindir}
2023-09-20 11:40:26 +08:00
make install
2020-02-27 15:55:37 +08:00
%files
2023-09-20 11:40:26 +08:00
%doc COPYING.LIB README
2020-02-27 15:55:37 +08:00
%{_libdir}/ocaml/libvirt
%exclude %{_libdir}/ocaml/libvirt/{*.a,*.cmxa,*.cmx,*.mli}
%{_libdir}/ocaml/stublibs/{*.so,*.so.owner}
%files devel
2023-09-20 11:40:26 +08:00
%doc COPYING.LIB README TODO.libvirt
2020-02-27 15:55:37 +08:00
%{_libdir}/ocaml/libvirt/{*.a,*.cmxa,*.cmx,*.mli}
%changelog
2023-09-20 11:40:26 +08:00
* Wed Sep 20 2023 liyanan <thistleslyn@163.com> - 0.6.1.7-1
- update to 0.6.1.7
2022-06-08 06:38:36 +00:00
* Thu Jan 20 2022 yangping <yangping69@huawei.com> - 0.6.1.5-1
- Update to 0.6.1.5
2020-02-27 15:55:37 +08:00
* Tue Feb 18 2020 chenli <chenli147@huawei.com> - 0.6.1.4-30
- Init Package.