8fee773a00
- new upstream release
94 lines
2.2 KiB
RPMSpec
94 lines
2.2 KiB
RPMSpec
Name: libftdi
|
|
Version: 0.15
|
|
Release: 1%{?dist}
|
|
Summary: Library to program and control the FTDI USB controller
|
|
|
|
Group: System Environment/Libraries
|
|
License: LGPLv2
|
|
URL: http://www.intra2net.com/de/produkte/opensource/ftdi/
|
|
Source0: http://www.intra2net.com/de/produkte/opensource/ftdi/TGZ/%{name}-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: libusb-devel, doxygen
|
|
Requires: pkgconfig
|
|
|
|
%package devel
|
|
Summary: Header files and static libraries for libftdi
|
|
Group: Development/Libraries
|
|
Requires: libftdi = %{version}-%{release}
|
|
Requires: libusb-devel
|
|
|
|
%description
|
|
A library (using libusb) to talk to FTDI's FT2232C,
|
|
FT232BM and FT245BM type chips including the popular bitbang mode.
|
|
|
|
%description devel
|
|
Header files and static libraries for libftdi
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
|
find %{buildroot} -name \*\.la -print | xargs rm -f
|
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man3
|
|
#no man install
|
|
install -p -m 644 doc/man/man3/*.3 $RPM_BUILD_ROOT%{_mandir}/man3
|
|
|
|
|
|
# Cleanup examples
|
|
rm -f $RPM_BUILD_ROOT/%{_bindir}/simple
|
|
rm -f $RPM_BUILD_ROOT/%{_bindir}/bitbang
|
|
rm -f $RPM_BUILD_ROOT/%{_bindir}/bitbang2
|
|
rm -f $RPM_BUILD_ROOT/%{_bindir}/bitbang_ft2232
|
|
rm -f $RPM_BUILD_ROOT/%{_bindir}/bitbang_cbus
|
|
rm -f $RPM_BUILD_ROOT/%{_bindir}/find_all
|
|
rm -f $RPM_BUILD_ROOT/%{_bindir}/find_all_pp
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS ChangeLog COPYING.LIB README
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%doc doc/html
|
|
%{_bindir}/libftdi-config
|
|
%{_libdir}/libftdi.a
|
|
%{_libdir}/libftdipp.a
|
|
%{_libdir}/*.so
|
|
%{_includedir}/*.h
|
|
%{_includedir}/*.hpp
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%changelog
|
|
* Sun Feb 15 2009 Lucian Langa <cooly@gnome.eu.org> - 0.15-1
|
|
- fix for bug #485600: pick libusb-devel for -devel subpackage
|
|
- new upstream release
|
|
|
|
* Fri Sep 26 2008 Lucian Langa <cooly@gnome.eu.org> - 0.14-2
|
|
- require pkgconfig for devel
|
|
|
|
* Tue Sep 23 2008 Lucian Langa <cooly@gnome.eu.org> - 0.14-1
|
|
- new upstream
|
|
|
|
* Wed Sep 03 2008 Lucian Langa <cooly@gnome.eu.org> - 0.13-1
|
|
- initial specfile
|