libirman/libirman.spec
Martin Pluskal f19243a7cd - Update to version 0.5.2:
* Plugin: Fix logging issues.
  * Configure the sys/file.h header (Debian #436563).
  * Build: Fix parallel make glitch.
- Changes for version 0.5.1:
  * Fix FTBS bug for --enable-swtest
  * Clean up plugin installation.
- Update project and download url
- Move config file to subpackage

OBS-URL: https://build.opensuse.org/package/show/hardware/libirman?expand=0&rev=8
2016-11-24 10:08:45 +00:00

113 lines
2.9 KiB
RPMSpec

#
# spec file for package libirman
#
# Copyright (c) 2016 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 sover 0
Name: libirman
Version: 0.5.2
Release: 0
Summary: Library for irman access
License: GPL-2.0+
Group: System/Libraries
Url: https://sourceforge.net/projects/libirman/
Source0: https://sourceforge.net/projects/libirman/files/%{version}/libirman-%{version}.tar.gz
BuildRequires: pkgconfig
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Libraries and tools for irman access from lirc project
%package -n %{name}%{sover}
Summary: Library for irman access
License: LGPL-2.0+
Group: System/Libraries
Requires: %{name}-common = %{version}
%description -n %{name}%{sover}
Library for irman access from lirc project
%package common
Summary: Common files for %{name}
License: LGPL-2.0+
Group: Development/Languages/C and C++
Conflicts: %{name}%{sover} < %{version}
%description common
Common files for %{name}.
%package utils
Summary: Library for irman access
License: GPL-2.0+
Group: Hardware/Other
Requires: %{name}-common = %{version}
%description utils
Utilities from %{name} from lirc project
%package devel
Summary: Development files for %{name}
License: GPL-2.0+
Group: Development/Libraries/C and C++
Requires: %{name}%{sover} = %{version}
%description devel
Devel files for %{name} from lirc project
%prep
%setup -q
%build
%configure \
--disable-static
make %{?_smp_mflags}
%install
%make_install
find %{buildroot} -type f -name "*.la" -delete -print
rm -rf %{buildroot}%{_datadir}
%post -n %{name}%{sover} -p /sbin/ldconfig
%postun -n %{name}%{sover} -p /sbin/ldconfig
%files utils
%defattr(-,root,root)
%doc COPYING
%{_bindir}/test_func
%{_bindir}/test_io
%{_bindir}/test_name
%{_bindir}/workmanir
%files -n %{name}%{sover}
%defattr(-,root,root)
%doc COPYING.lib
%defattr(-,root,root,-)
%{_libdir}/%{name}.so.%{sover}*
%files common
%defattr(-,root,root)
%config %{_sysconfdir}/irman.conf
%files devel
%defattr(-,root,root)
%doc COPYING COPYING.lib NEWS README
%defattr(-,root,root,-)
%{_includedir}/irman.h
%{_libdir}/libirman.so
%{_libdir}/pkgconfig/libirman.pc
%changelog