evemu/evemu.spec

119 lines
3.3 KiB
RPMSpec

#
# spec file for package evemu
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define soname libevemu
%define sover 3
Name: evemu
Version: 2.1.0
Release: 0
Summary: Input Event Device Emulation Library
License: GPL-3.0
Group: Hardware/Other
Url: http://freedesktop.org/wiki/Evemu
Source: http://archive.ubuntu.com/ubuntu/pool/universe/e/%{name}/%{name}_%{version}.orig.tar.xz
BuildRequires: asciidoc
BuildRequires: gcc-c++
BuildRequires: pkg-config
BuildRequires: python-devel
BuildRequires: python3-devel
BuildRequires: xmlto
BuildRequires: pkgconfig(libevdev) >= 1.2.99.902
Provides: %{name}-tools = %{version}
Obsoletes: %{name}-tools < %{version}
%description
The evemu library and tools are used to describe devices, record
data, create emulation devices and replay data from kernel evdev
(input event) devices.
%package -n %{soname}%{sover}
Summary: Input Event Device Emulation Library
Group: System/Libraries
%description -n %{soname}%{sover}
The evemu library and tools are used to describe devices, record
data, create emulation devices and replay data from kernel evdev
(input event) devices.
%package -n python-%{name}
Summary: Python2 bindings for evemu
Group: Development/Languages/Python
Requires: %{soname}%{sover} = %{version}
%description -n python-%{name}
The evemu library and tools are used to describe devices, record
data, create emulation devices and replay data from kernel evdev
(input event) devices.
This package provides the Python2 bindings for evemu.
%package devel
Summary: Development files for evemu
Group: Development/Tools/Other
Requires: %{name} = %{version}
Requires: %{soname}%{sover} = %{version}
%description devel
The evemu library and tools are used to describe devices, record
data, create emulation devices and replay data from kernel evdev
(input event) devices.
This package provides the development files.
%prep
%setup -q
%build
%configure \
--disable-static \
--disable-silent-rules \
--disable-tests
make %{?_smp_mflags}
%install
%make_install
find %{buildroot} -type f -name "*.la" -delete -print
%post -n %{soname}%{sover} -p /sbin/ldconfig
%postun -n %{soname}%{sover} -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc COPYING
%{_bindir}/%{name}-*
%{_mandir}/man?/%{name}-*?%{?ext_man}
%files -n %{soname}%{sover}
%defattr(-,root,root)
%doc COPYING
%{_libdir}/%{soname}.so.%{sover}*
%files -n python-%{name}
%defattr(-,root,root)
%doc COPYING
%{python_sitelib}/%{name}/
%files devel
%defattr(-,root,root)
%{_includedir}/%{name}.h
%{_libdir}/%{soname}.so
%{_libdir}/pkgconfig/%{name}.pc
%changelog