Files
libwpe/libwpe.spec
Bjørn Lie ac6952016f Accepting request 1247091 from GNOME:Next
- Update to version 1.16.2:
  + Fix ABI break accidentally introduced in the 1.16.1 release.
- Changes from version 1.16.1:
  + Add support for non-discrete gamepad button values. This allows
    representing button pressure sensitivity for devices with
    analog button inputs.
- Changes from version 1.16.0:
  + New API to override the default to override the default
    implementation for subprocess launch and termination.
  + New API for handling pointer lock events.
  + Properly handle the EGL library when available without a
    pkg-config module file present.
  + Allow resetting the full screen client to a null pointer.

OBS-URL: https://build.opensuse.org/request/show/1247091
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libwpe?expand=0&rev=22
2025-02-19 14:05:00 +00:00

82 lines
2.2 KiB
RPMSpec

#
# spec file for package libwpe
#
# Copyright (c) 2025 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/
#
# When updating this, do so in baselibs.conf too
%define major_minor 1.0
%define sover 1_0-1
Name: libwpe
Version: 1.16.2
Release: 0
Summary: General-purpose library for the WPE-flavored port of WebKit
License: BSD-2-Clause
URL: https://github.com/WebPlatformForEmbedded/libwpe
Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz
Source99: baselibs.conf
BuildRequires: c++_compiler
BuildRequires: meson >= 0.49
BuildRequires: pkgconfig
BuildRequires: pkgconfig(egl)
BuildRequires: pkgconfig(xkbcommon)
%description
General-purpose library developed for the WPE-flavored port of
WebKit.
%package -n %{name}-%{sover}
Summary: Shared library for %{name}
%description -n %{name}-%{sover}
General-purpose library developed for the WPE-flavored port of
WebKit.
This package contains the shared libary of libwpe.
%package devel
Summary: Development files for %{name}
Requires: %{name}-%{sover} = %{version}
%description devel
The %{name}-devel package contains libraries, build data, and
header files for developing applications that use %{name}.
%prep
%autosetup -p1
%build
%meson \
%{nil}
%meson_build
%install
%meson_install
%ldconfig_scriptlets -n %{name}-%{sover}
%files -n %{name}-%{sover}
%license COPYING
%doc NEWS
%{_libdir}/%{name}-%{major_minor}.so.*
%files devel
%{_includedir}/wpe-%{major_minor}/
%{_libdir}/%{name}-%{major_minor}.so
%{_libdir}/pkgconfig/wpe-%{major_minor}.pc
%changelog