neatvnc/neatvnc.spec
Michael Vetter 304896566c - Update to 0.5.4:
* This fixes stalling during h264 encoding. The FFmpeg devs
    seem to think that it's normal to change the default behaviour
    of their code, so this needs to be fixed here instead.

- Update to 0.5.3:
  * Revert "h264-encoder: Add 30 bit color depth formats"
  * server: Fix encoding selection for sw frames

- Update to 0.5.2:
  * stream: Remove stray ampersand in tls handshake failure code path
  * resampler: Use transformed width as destination stride

- Update to 0.5.1:
  * meson: Use partial_dependency() for libdrm cflags
  * test: meson: Add missing libdrm_inc dependency
  * server: add missing header after f20ffb5e1efe

- Update to 0.5.0:
  * H.264 Encoding
  * UNIX Sockets
  * New framebuffer submission API
  * Automatic buffer transforms
  * Client side cursor rendering
  * Now accepts DMA-BUFs
  * Presentation time stamps
  * New internal encoder abstraction layer

OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/neatvnc?expand=0&rev=11
2022-11-07 22:55:08 +00:00

85 lines
2.1 KiB
RPMSpec

#
# spec file for package neatvnc
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: neatvnc
Version: 0.5.4
Release: 0
Summary: A VNC server library
License: ISC
Group: System/GUI/Other
URL: https://github.com/any1/neatvnc
Source0: https://github.com/any1/neatvnc/archive/v%{version}.tar.gz
BuildRequires: aml-devel
BuildRequires: cmake
BuildRequires: ffmpeg-4-libavcodec-devel
BuildRequires: ffmpeg-4-libavfilter-devel
BuildRequires: libdrm-devel
BuildRequires: libgbm-devel
BuildRequires: libgnutls-devel
BuildRequires: libjpeg8-devel
BuildRequires: libpixman-1-0-devel
BuildRequires: libuv-devel
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: zlib-devel
%description
This is a VNC server library.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries/C and C++
Requires: libneatvnc0 = %{version}
%description devel
Development files and headers for %{name}.
%package -n libneatvnc0
Summary: A VNC server library
Group: System/Libraries
%description -n libneatvnc0
A VNC server library.
%prep
%autosetup -p1
%build
%meson
%meson_build
%install
%meson_install
%post -n libneatvnc0 -p /sbin/ldconfig
%postun -n libneatvnc0 -p /sbin/ldconfig
%files devel
%license COPYING
%doc README.md
%{_includedir}/neatvnc.h
%{_libdir}/libneatvnc.so
%{_libdir}/pkgconfig/neatvnc.pc
%files -n libneatvnc0
%{_libdir}/libneatvnc.so.0
%{_libdir}/libneatvnc.so.0.0.0
%changelog