Initial import (#1934387)

This commit is contained in:
Peter Hutterer 2021-03-04 08:48:06 +10:00
commit 32ee064343
3 changed files with 46 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/xinput-*.tar.bz2

1
sources Normal file
View file

@ -0,0 +1 @@
SHA512 (xinput-1.6.3.tar.bz2) = cb2fef866ac5a71dbca3e23b4ecadaca38e65dc1b30f8bb024bad92486554fafc472706619a1af04c746a4f53ce6aea827d694b9f4f0c7d0d46bb1da81984076

44
xinput.spec Normal file
View file

@ -0,0 +1,44 @@
Name: xinput
Version: 1.6.3
Release: 1%{?dist}
Summary: Utility to query X Input devices
License: MIT
URL: https://www.x.org
Source0: https://www.x.org/pub/individual/app/%{name}-%{version}.tar.bz2
BuildRequires: automake libtool
BuildRequires: gcc make
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xi)
BuildRequires: pkgconfig(xrandr)
BuildRequires: pkgconfig(xinerama)
BuildRequires: pkgconfig(xorg-macros) >= 1.8
Obsoletes: xorg-x11-server-utils <= 7.7-39
%description
xinput is a commandline utility to query and configure X11 X Input Extension
devices. It is commonly used to change driver properties at runtime.
%prep
%autosetup
%build
autoreconf -v --install
%configure --disable-silent-rules
%make_build
%install
%make_install
%files
%license COPYING
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1*
%changelog
* Wed Mar 03 2021 Peter Hutterer <peter.hutterer@redhat.com> 1.6.3-1
- Split xinput out from xorg-x11-server-utils into a separate package
(#1934387)