package created using the webbuild interface [release 22.1.0-1mamba;Sun Mar 27 2022]

This commit is contained in:
Silvan Calarco 2024-01-05 19:58:17 +01:00
parent f08ea4fcd8
commit 3a3d872512
2 changed files with 75 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# xwayland
X.org X Server that runs under Wayland.

73
xwayland.spec Normal file
View File

@ -0,0 +1,73 @@
Name: xwayland
Version: 22.1.0
Release: 1mamba
Summary: X.org X Server that runs under Wayland
Group: System/X11
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://wayland.freedesktop.org/xserver.html
Source: https://xorg.freedesktop.org/archive/individual/xserver/xwayland-%{version}.tar.xz
License: https://xorg.freedesktop.org
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libXau-devel
BuildRequires: libXfont2-devel
BuildRequires: libaudit-devel
BuildRequires: libbsd-devel
BuildRequires: libdrm-devel
BuildRequires: libepoxy-devel
BuildRequires: libglvnd-devel
BuildRequires: libmesa-devel
BuildRequires: libnettle-devel
BuildRequires: libpixman-devel
BuildRequires: libselinux-devel
BuildRequires: libtirpc-devel
BuildRequires: libwayland-devel
BuildRequires: libxcvt-devel
BuildRequires: libxshmfence-devel
## AUTOBUILDREQ-END
Requires: xorg-server
%description
X.org X Server that runs under Wayland.
%debug_package
%prep
%setup -q
%build
%meson \
-D ipv6=true \
-D xvfb=false \
-D xdmcp=false \
-D xcsecurity=true \
-D dri3=true \
-D xwayland_eglstream=true \
-D glamor=true \
-D xkb_dir=%{_datadir}/X11/xkb \
-D xkb_output_dir=%{_sysconfdir}/X11/xkb/compiled
%meson_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%meson_install
rm -f %{buildroot}%{_mandir}/man1/Xserver.1*
rm -f %{buildroot}%{_libdir}/xorg/protocol.txt
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/Xwayland
%{_libdir}/pkgconfig/xwayland.pc
%{_mandir}/man1/Xwayland.1*
%doc COPYING
%changelog
* Sun Mar 27 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 22.1.0-1mamba
- package created using the webbuild interface