libftdi1/libftdi1.spec

110 lines
3.2 KiB
RPMSpec
Raw Normal View History

#
# spec file for package libftdi1
#
# Copyright (c) 2017 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/
#
Name: libftdi1
Version: 1.3
Release: 0
Summary: Library to program and control the FTDI USB controller
License: LGPL-2.1+ and GPL-2.0-with-classpath-exception
Group: Hardware/Other
Url: http://www.intra2net.com/en/developer/libftdi
Source: http://www.intra2net.com/en/developer/libftdi/download/libftdi1-%{version}.tar.bz2
%if 0%{?suse_version} > 1325
BuildRequires: libboost_headers-devel
%else
BuildRequires: boost-devel
%endif
BuildRequires: cmake >= 2.8
BuildRequires: doxygen
BuildRequires: gcc-c++
BuildRequires: libconfuse-devel
BuildRequires: libusb-1_0-devel
BuildRequires: pkgconfig
BuildRequires: python-devel
BuildRequires: python-xml
BuildRequires: swig
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Library to program and control the FTDI USB controller.
This library is used by many programs accessing FTDI USB-to-RS232 converters.
%package binding-python
Summary: Python binding for libftdi
Group: Development/Languages/Python
Requires: libftdi1 = %{version}
Requires: swig
%description binding-python
Library to program and control the FTDI USB controller.
This library is used by many programs accessing FTDI USB-to-RS232 converters.
This package provides the python binding for libftdi.
%package -n libftdi1-devel
Summary: Header files and static libraries for libftdi
Group: Development/Libraries/C and C++
Requires: libftdi1 = %{version}
Requires: libusb-1_0-devel
%description -n libftdi1-devel
Header files and static libraries for libftdi.
This library is used by many programs accessing FTDI USB-to-RS232 converters.
%prep
%setup -q
%build
%cmake
make %{?_smp_mflags}
%install
%cmake_install
rm -rf %{buildroot}%{_datadir}
mkdir -p %{buildroot}%{_mandir}/man3
cd build
cp -p doc/man/man3/[^_]*.3 %{buildroot}%{_mandir}/man3
find %{buildroot} -type f -name "*.a" -delete -print
find %{buildroot} -type f -name "*.la" -delete -print
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc AUTHORS COPYING* LICENSE README
%{_libdir}/libftdi*.so.*
%files binding-python
%defattr(-,root,root)
%doc python/examples/*.py
%{python_sitearch}/*
%files -n libftdi1-devel
%defattr(-,root,root)
%doc ftdi_eeprom/example.conf
%{_bindir}/libftdi*-config
%{_bindir}/ftdi_eeprom
%{_includedir}/%{name}
%{_libdir}/libftdi*.so
%{_libdir}/pkgconfig/*.pc
%{_libdir}/cmake/%{name}
%{_mandir}/man3/*
%changelog