aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--input.spec29
1 files changed, 29 insertions, 0 deletions
diff --git a/input.spec b/input.spec
new file mode 100644
index 0000000..68e3bf7
--- /dev/null
+++ b/input.spec
@@ -0,0 +1,29 @@
+Name: input
+License: GPLv2+
+Version: 1.2
+Release: 2%{?dist}
+Summary: linux input tools
+Group: Applications/System
+URL: http://www.kraxel.org/blog/linux/%{name}/
+Source: http://www.kraxel.org/releases/%{name}/%{name}-%{version}.tar.gz
+
+%description
+Tools to handle linux input devices (evdev).
+List devices, dump input events, ...
+
+%prep
+%setup -q
+
+%build
+export CFLAGS="%{optflags}"
+make prefix=/usr
+
+%install
+make prefix=/usr DESTDIR=%{buildroot} STRIP="" install
+
+%files
+%doc COPYING
+%{_bindir}/*
+%{_mandir}/man8/*.8*
+
+%changelog