libftdi1/libftdi1.spec

91 lines
2.5 KiB
RPMSpec
Raw Normal View History

#
# spec file for package libftdi1
#
# Copyright (c) 2014 SUSE LINUX Products 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.0
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
BuildRequires: boost-devel
BuildRequires: cmake >= 2.8
BuildRequires: doxygen
BuildRequires: gcc-c++
BuildRequires: libusb-1_0-devel
BuildRequires: pkgconfig
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%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
Library to program and control the FTDI USB controller.
This library is used by many programs accessing FTDI USB-to-RS232 converters.
%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
mkdir build
%build
cd build
%ifarch ia64
CMFLAGS="-DLIB_SUFFIX=/"
%else
CMFLAGS=""
%endif
CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" \
cmake -DCMAKE_INSTALL_PREFIX="%{_prefix}" $CMFLAGS ../
make %{?_smp_mflags}
%install
cd build
%make_install
mkdir -p %{buildroot}%{_mandir}/man3
cp -p doc/man/man3/[^_]*.3 %{buildroot}%{_mandir}/man3
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc AUTHORS COPYING* LICENSE README
%{_libdir}/libftdi*.so.*
%files -n libftdi1-devel
%defattr(-,root,root)
%{_bindir}/libftdi*-config
%{_includedir}/%{name}
%{_libdir}/libftdi*.so
%{_libdir}/libftdi*.*a
%{_libdir}/pkgconfig/*.pc
%{_libdir}/cmake/%{name}
%{_mandir}/man3/*
%changelog