From 96389e01c0c1140d4aca262306c4710c22ddd449 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Wed, 8 Mar 2017 09:10:35 -0800 Subject: [PATCH] Initial import (1429683). --- .gitignore | 1 + sources | 1 + xorgxrdp.spec | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 xorgxrdp.spec diff --git a/.gitignore b/.gitignore index e69de29..2f5aeb3 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/xorgxrdp-0.2.0.tar.gz diff --git a/sources b/sources index e69de29..1673623 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +SHA512 (xorgxrdp-0.2.0.tar.gz) = 763b8f17b978547211e7109376363cf20aa0218157e04e1406c7851ed94d132b930936ad213eb38cba1767cc8d246c3ae1cb428309af1189433629f9f696aea5 diff --git a/xorgxrdp.spec b/xorgxrdp.spec new file mode 100644 index 0000000..5dc28e6 --- /dev/null +++ b/xorgxrdp.spec @@ -0,0 +1,52 @@ +Name: xorgxrdp +Version: 0.2.0 +Release: 1%{?dist} +Summary: Implementation of xrdp backend as Xorg modules + +License: MIT +URL: https://github.com/neutrinolabs/xorgxrdp +Source0: https://github.com/neutrinolabs/xorgxrdp/releases/download/v%{version}/%{name}-%{version}.tar.gz + +BuildRequires: nasm +BuildRequires: xorg-x11-server-devel +BuildRequires: xrdp-devel +Requires: xorg-x11-server-Xorg%{_isa} + +%description +xorgxrdp is a set of X11 modules that make Xorg act as a backend for +xrdp. Xorg with xorgxrdp is the most advanced xrdp backend with support +for screen resizing and multiple monitors. + +%prep +%autosetup + + +%build +%configure +%make_build + + +%install +%make_install + + +%files +%license COPYING +%doc README.md +%dir %{_sysconfdir}/X11/xrdp +%{_sysconfdir}/X11/xrdp/xorg.conf +%{_libdir}/xorg/modules/drivers/xrdpdev_drv.so +%{_libdir}/xorg/modules/input/xrdpkeyb_drv.so +%{_libdir}/xorg/modules/input/xrdpmouse_drv.so +%{_libdir}/xorg/modules/libxorgxrdp.so +%exclude %{_libdir}/xorg/modules/*.a +%exclude %{_libdir}/xorg/modules/*.la +%exclude %{_libdir}/xorg/modules/input/*.a +%exclude %{_libdir}/xorg/modules/input/*.la +%exclude %{_libdir}/xorg/modules/drivers/*.a +%exclude %{_libdir}/xorg/modules/drivers/*.la + + +%changelog +* Sun Mar 5 2017 Pavel Roskin - 0.2.0-1 +- Package created