libcec/libcec.spec

142 lines
4.1 KiB
RPMSpec
Raw Normal View History

# note: build for raspberrypi
# autospec --define _with_raspberrypi=1 -u -a5 libcec.spec
# -or-
# rpmbuild --with raspberrypi libcec.spec
%if "%{?_with_raspberrypi}"
%define pckname %{name}-rpi
%else
%define pckname %name
%endif
Name: libcec
Epoch: 1
Version: 5.0.0
Release: 1mamba
Summary: USB CEC Adaptor communication Library
Group: System/Kernel and Hardware
Vendor: openmamba
Distribution: openmamba
Packager: Davide Madrisan <davide.madrisan@gmail.com>
URL: http://libcec.pulse-eight.com/
## GITSOURCE git://github.com/Pulse-Eight/libcec.git
Source: https://github.com/Pulse-Eight/libcec/archive/libcec-%{version}.tar.gz
#Source: https://github.com/Pulse-Eight/libcec.git/libcec-%{version}/libcec-%{version}.tar.bz2
Patch0: libcec-3.0.1-buildfix-upstream.patch
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libX11-devel
BuildRequires: libXrandr-devel
BuildRequires: libcec-p8-platform-devel
BuildRequires: libgcc
BuildRequires: libncurses-devel
BuildRequires: libpython-devel
BuildRequires: libpython3-devel
BuildRequires: libstdc++6-devel
BuildRequires: libudev-devel
## AUTOBUILDREQ-END
BuildRequires: autoconf
BuildRequires: libtool
BuildRequires: liblockdev-devel
%if "%{?_with_raspberrypi}"
BuildRequires: libraspberrypi-devel
Provides: libcec = %{?epoch:%epoch:}%{version}-%{release}
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
libCEC allows you in combination with the right hardware to control your device with your TV remote control.
%if "%{?_with_raspberrypi}"
%package -n %{name}-rpi
Group: System/Kernel and Hardware
Summary: USB CEC Adaptor communication Library
%description -n %{name}-rpi
libCEC allows you in combination with the right hardware to control your device with your TV remote control.
%endif
%package -n %{pckname}-devel
Group: Development/Libraries
Summary: Development files for %{pckname}
Requires: %{pckname} = %{?epoch:%epoch:}%{version}-%{release}
%if "%{?_with_raspberrypi}"
Provides: libcec-devel = %{?epoch:%epoch:}%{version}-%{release}
%endif
Requires: pkg-config
%description -n %{pckname}-devel
This package contains libraries and header files for developing applications that use %{pckname}.
%debug_package
%prep
%setup -q -n libcec-libcec-%{version}
#-D -T
#%patch0 -p1
%build
#: << CBLOCK
%cmake -d build \
\
%if "%{?_with_raspberrypi}"
-DRPI_INCLUDE_DIR=/opt/vc/include \
-DRPI_LIB_DIR=/opt/vc/lib
%endif
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n %{pckname} -p /sbin/ldconfig
%postun -n %{pckname} -p /sbin/ldconfig
%files -n %{pckname}
%defattr(-,root,root)
%{_bindir}/cec-client
%{_bindir}/cec-client-%{version}
%{_bindir}/cecc-client
%{_bindir}/cecc-client-%{version}
%{_bindir}/pyCecClient
%{python3_sitelib}/_cec.so
%{python3_sitelib}/cec.py
%{_libdir}/libcec.so.*
%doc AUTHORS COPYING
%files -n %{pckname}-devel
%defattr(-,root,root)
%{_includedir}/libcec
%{_libdir}/libcec.so
%{_libdir}/pkgconfig/libcec.pc
#%doc ChangeLog
%changelog
* Sat May 02 2020 Automatic Build System <autodist@mambasoft.it> 5.0.0-1mamba
- automatic version update by autodist
* Sat Nov 09 2019 Automatic Build System <autodist@mambasoft.it> 4.0.4-1mamba
- automatic version update by autodist
* Mon Nov 04 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 4.0.3-1mamba
- update to 4.0.3
* Wed Sep 23 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 3.0.1-1mamba
- update to 3.0.1
* Sun Mar 03 2013 Davide Madrisan <davide.madrisan@gmail.com> 20130217git-4mamba
- fix the summary of the devel package
* Mon Feb 25 2013 openmamba WebBuild System <webbuild@openmamba.org> 20130217git-3mamba
- simplify the conditional statements by using a syntax that autospec can understand
* Sun Feb 24 2013 Davide Madrisan <davide.madrisan@gmail.com> 20130217git-2mamba
- make raspberrypi a conditional build target
* Sun Feb 17 2013 Davide Madrisan <davide.madrisan@gmail.com> 20130217git-1mamba
- package created by autospec