neatvnc/neatvnc.spec
Michael Vetter 6506c824bd Accepting request 824744 from home:agraul:branches:X11:Wayland
Requires aml (request 824743)
- Update to version 0.2.0
- Tight encoding is no longer experimental and also more complete.
  + The encoder employs multiple CPU cores, both for lossy and lossless
    compression, which makes it considerably faster than ZRLE, even with
    lossless compression.
  + Supports both lossy (JPEG) and lossless (DEFLATE) compression.
  + Allows the client to choose the JPEG "quality" level.
  + Allows the client to choose whether to enable lossy compression or not.
- Service-side resizing: the server can notify the client and resize buffers
  when a different display mode is set
- The API has been prepared for adding multi-display suppport. It has not been
  implemented, but the (hopefully) won't have to change when it is.
- Version info is baked into the library, so applications linking to neatvnc
  can report the version to the user.
- The server can now looks up the address to which to bind using getaddrinfo

OBS-URL: https://build.opensuse.org/request/show/824744
OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/neatvnc?expand=0&rev=5
2020-08-07 09:12:38 +00:00

81 lines
2.0 KiB
RPMSpec

#
# spec file for package neatvnc
#
# Copyright (c) 2020 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.2.0
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: libdrm-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