frei0r-plugins package init

This commit is contained in:
yanzh_h 2019-12-23 15:15:59 +08:00
parent 95d30546e2
commit 4ba644b8ae
2 changed files with 59 additions and 0 deletions

BIN
frei0r-plugins-1.6.1.tar.gz Normal file

Binary file not shown.

59
frei0r-plugins.spec Normal file
View File

@ -0,0 +1,59 @@
me: frei0r-plugins
Version: 1.6.1
Release: 7
Summary: A minimalist plugin API for video effects
License: GPLv2+
URL: https://frei0r.dyne.org/
Source0: https://github.com/dyne/frei0r/archive/v%{version}/frei0r-plugins-%{version}.tar.gz
Buildrequires: libtool gcc-c++ gavl-devel >= 0.2.3 opencv-devel >= 1.0.0 cairo-devel >= 1.0.0
%description
This package provides a collection of video sources and filters plugins.
The behavior of the effects can be controlled from the host by simple parameters.
The intent is to solve the recurring re-implementation or adaptation issue of standard effect.
%package opencv
Summary: Plugins using OpenCV for frei0r
Requires: %{name} = %{version}-%{release}
%description opencv
This package provides frei0r plugins which use the OpenCV computer vision framework.
%package -n frei0r-devel
Summary: Development support for frei0r-plugins
Requires: %{name} = %{version}-%{release}
%description -n frei0r-devel
This package includes libraries and header files for frei0r-plugins.
%prep
%autosetup -n frei0r-%{version} -p1
%build
install -d m4
autoreconf -i
%configure --disable-static
%make_build
%install
%make_install
%files
%doc AUTHORS ChangeLog README.md TODO COPYING
%dir %{_libdir}/frei0r-1
%{_libdir}/frei0r-1/*.so
%exclude %{_libdir}/frei0r-1/facebl0r.so
%exclude %{_libdir}/frei0r-1/facedetect.so
%files opencv
%{_libdir}/frei0r-1/{facebl0r,facedetect}.so
%files -n frei0r-devel
%exclude %{_docdir}/frei0r-plugins
%{_includedir}/frei0r.h
%{_libdir}/pkgconfig/frei0r.pc
%changelog
* Sat Dec 21 2019 yanzhihua <yanzhihua4@huawei.com> - 1.6.1-7
- Package init