SHA256
1
0
forked from pool/neatvnc
neatvnc/neatvnc.spec
Michael Vetter 00e8bcf1c0 - Update to 0.6.0:
Highlights:
  * The client now has control over h264 quality settings
  * Left & right scrolling is now supported
  * A custom framebuffer allocator function can now be assigned
  * The following functions have been added
    + A function for querying client side cursor support
    + A function to get the hostname of a connected client
    + A function to get the credentials of an authenticated client
    + A function for listing connected clients
    + A function for disconnecting a client
  Bug fixes:
  * A race condition when a client tries to resize the display before it has an encoder
  * Cursor buffers are now freed on close
  * Various race conditions in encoders
  * Spurious exits due to SIGPIPE
  * Occasional leaked buffers when clients disconnect
  * Clients no longer linger on exit with TLS

OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/neatvnc?expand=0&rev=15
2023-01-23 16:54:35 +00:00

85 lines
2.1 KiB
RPMSpec

#
# spec file for package neatvnc
#
# Copyright (c) 2023 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/
#
%define libsoname libneatvnc0
Name: neatvnc
Version: 0.6.0
Release: 0
Summary: A VNC server library
License: ISC
Group: System/GUI/Other
URL: https://github.com/any1/neatvnc
Source0: %url/archive/v%{version}.tar.gz
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: pkgconfig(aml) >= 0.3.0
BuildRequires: pkgconfig(gbm)
BuildRequires: pkgconfig(gnutls)
BuildRequires: pkgconfig(libavcodec)
BuildRequires: pkgconfig(libavfilter)
BuildRequires: pkgconfig(libavutil)
BuildRequires: pkgconfig(libdrm)
BuildRequires: pkgconfig(libturbojpeg)
BuildRequires: pkgconfig(pixman-1)
BuildRequires: pkgconfig(zlib)
%description
This is a VNC server library.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries/C and C++
Requires: %libsoname = %{version}
%description devel
Development files and headers for %{name}.
%package -n %libsoname
Summary: A VNC server library
Group: System/Libraries
%description -n %libsoname
A VNC server library.
%prep
%autosetup -p1
%build
%meson
%meson_build
%install
%meson_install
%ldconfig_scriptlets -n %libsoname
%files devel
%license COPYING
%doc README.md
%{_includedir}/neatvnc.h
%{_libdir}/libneatvnc.so
%{_libdir}/pkgconfig/neatvnc.pc
%files -n %libsoname
%{_libdir}/libneatvnc.so.*
%changelog