package created using the webbuild interface [release 0.28.2-1mamba;Sun Mar 03 2019]

This commit is contained in:
Silvan Calarco 2024-01-05 19:37:30 +01:00
parent 5861c75608
commit 2934385532
2 changed files with 53 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# xf86-input-libinput
A libinput-based X driver.

51
xf86-input-libinput.spec Normal file
View File

@ -0,0 +1,51 @@
Name: xf86-input-libinput
Version: 0.28.2
Release: 1mamba
Summary: A libinput-based X driver
Group: System/X11
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://x.org
Source: ftp://ftp.x.org/pub/individual/driver/xf86-input-libinput-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libinput-devel
## AUTOBUILDREQ-END
BuildRequires: xorg-server-devel >= 1.20.4
BuildRequires: xorgproto-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A libinput-based X driver.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_includedir}/xorg/libinput-properties.h
%{_libdir}/pkgconfig/xorg-libinput.pc
%{_libdir}/xorg/modules/input/libinput_drv.la
%{_libdir}/xorg/modules/input/libinput_drv.so
%{_datadir}/X11/xorg.conf.d/40-libinput.conf
%{_mandir}/man4/libinput.4*
%doc COPYING
%changelog
* Sun Mar 03 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 0.28.2-1mamba
- package created using the webbuild interface