ocaml-ffmpeg/ocaml-ffmpeg.spec

90 lines
2.4 KiB
RPMSpec
Raw Normal View History

%define ocamlpck ffmpeg
Name: ocaml-ffmpeg
Version: 0.4.3
Release: 1mamba
Summary: OCaml bindings to the FFmpeg library
Group: Development/Bindings
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/savonet/ocaml-ffmpeg
Source: https://github.com/savonet/ocaml-ffmpeg/releases/download/v%{version}/ocaml-ffmpeg-%{version}.tar.gz
#Source: http://sourceforge.net/projects/savonet/files/ocaml-ffmpeg/%{version}/ocaml-ffmpeg-%{version}.tar.gz
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: libpulseaudio-devel
BuildRequires: libavcodec-ffmpeg-devel
BuildRequires: libavdevice-ffmpeg-devel
BuildRequires: libavfilter-ffmpeg-devel
BuildRequires: libavformat-ffmpeg-devel
BuildRequires: libavutil-ffmpeg-devel
BuildRequires: libpostproc-ffmpeg-devel
BuildRequires: libswscale-ffmpeg-devel
BuildRequires: libswresample-ffmpeg-devel
## AUTOBUILDREQ-END
%description
OCaml bindings to the FFmpeg library.
%package devel
Group: Development/Libraries
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
./bootstrap
%build
./configure \
--prefix=%{_prefix} \
--disable-ldconf
%make
#make doc
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
export DESTDIR=%{buildroot}
export OCAMLFIND_DESTDIR=%{buildroot}$(ocamlfind printconf destdir)
export DLLDIR=$OCAMLFIND_DESTDIR/stublibs
install -d $OCAMLFIND_DESTDIR/%{ocamlpck}
install -d $OCAMLFIND_DESTDIR/stublibs
make install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%dir %{_libdir}/ocaml/%{ocamlpck}
%{_libdir}/ocaml/%{ocamlpck}/META
%{_libdir}/ocaml/%{ocamlpck}/*.cma
%{_libdir}/ocaml/%{ocamlpck}/*.cmi
%{_libdir}/ocaml/stublibs/*.so*
%doc COPYING
%files devel
%defattr(-,root,root)
%{_libdir}/ocaml/%{ocamlpck}/*.a
%{_libdir}/ocaml/%{ocamlpck}/*.cmxa
%{_libdir}/ocaml/%{ocamlpck}/*.cmx
%{_libdir}/ocaml/%{ocamlpck}/*.mli
%doc CHANGES
#%doc doc/html/
%changelog
* Fri Feb 26 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.3-1mamba
- update to 0.4.3
* Sat Jun 29 2013 openmamba WebBuild System <webbuild@openmamba.org> 0.1.0-1mamba
- package created by davide using the webbuild interface