rebuilt [release 0.10.1-2mamba;Sun Dec 20 2020]
This commit is contained in:
parent
24166a8059
commit
3e70c3f9d9
31
lirc.spec
31
lirc.spec
@ -3,7 +3,7 @@
|
|||||||
Name: lirc
|
Name: lirc
|
||||||
Version: 0.10.1
|
Version: 0.10.1
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Release: 1mamba
|
Release: 2mamba
|
||||||
Summary: A package that allows you to decode and send infra-red signals
|
Summary: A package that allows you to decode and send infra-red signals
|
||||||
Group: System/Hardware
|
Group: System/Hardware
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
@ -16,6 +16,7 @@ Patch1: lirc-0.9.4-fix-devinput-conf.patch
|
|||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
|
BuildRequires: ldconfig
|
||||||
BuildRequires: libICE-devel
|
BuildRequires: libICE-devel
|
||||||
BuildRequires: libSM-devel
|
BuildRequires: libSM-devel
|
||||||
BuildRequires: libX11-devel
|
BuildRequires: libX11-devel
|
||||||
@ -23,21 +24,19 @@ BuildRequires: libXau-devel
|
|||||||
BuildRequires: libXdmcp-devel
|
BuildRequires: libXdmcp-devel
|
||||||
BuildRequires: libalsa-devel
|
BuildRequires: libalsa-devel
|
||||||
BuildRequires: libbsd-devel
|
BuildRequires: libbsd-devel
|
||||||
BuildRequires: libcap-devel
|
|
||||||
BuildRequires: libdw-devel
|
|
||||||
BuildRequires: libftdi1-devel
|
BuildRequires: libftdi1-devel
|
||||||
BuildRequires: libgcc
|
BuildRequires: libgcc
|
||||||
BuildRequires: libjack-devel
|
BuildRequires: libjack-devel
|
||||||
BuildRequires: libpcre-devel
|
|
||||||
BuildRequires: libportaudio-devel
|
BuildRequires: libportaudio-devel
|
||||||
BuildRequires: libselinux-devel
|
BuildRequires: libpython3-devel
|
||||||
BuildRequires: libsepol-devel
|
|
||||||
BuildRequires: libstdc++6-devel
|
BuildRequires: libstdc++6-devel
|
||||||
|
BuildRequires: libsystemd-devel
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
BuildRequires: libusb-compat-devel
|
BuildRequires: libusb-compat-devel
|
||||||
BuildRequires: libusb-devel
|
BuildRequires: libusb-devel
|
||||||
BuildRequires: libuuid-devel
|
BuildRequires: libuuid-devel
|
||||||
BuildRequires: libxcb-devel
|
BuildRequires: libxcb-devel
|
||||||
|
BuildRequires: python3
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
BuildRequires: help2man >= 1.36.3
|
BuildRequires: help2man >= 1.36.3
|
||||||
Requires: PyYAML-py3
|
Requires: PyYAML-py3
|
||||||
@ -54,15 +53,20 @@ Requires: %{name} = %{?epoch:%epoch:}%{version}
|
|||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
LIRC is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls.
|
LIRC is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls.
|
||||||
This package contains static libraries and header files need for development.
|
This package contains static libraries and header files needed for development.
|
||||||
|
|
||||||
|
#% debug_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
#-D -T
|
||||||
|
#:<< _EOF
|
||||||
#%patch0 -p1
|
#%patch0 -p1
|
||||||
#%patch1 -p1
|
#%patch1 -p1
|
||||||
|
./autogen.sh
|
||||||
|
|
||||||
%build
|
%build
|
||||||
./autogen.sh
|
#:<< _EOF
|
||||||
%configure
|
%configure
|
||||||
|
|
||||||
%make systemddir=%{_unitdir} VARRUNDIR=/run
|
%make systemddir=%{_unitdir} VARRUNDIR=/run
|
||||||
@ -77,7 +81,10 @@ This package contains static libraries and header files need for development.
|
|||||||
|
|
||||||
#install -d %{buildroot}%{_sysconfdir}/lirc
|
#install -d %{buildroot}%{_sysconfdir}/lirc
|
||||||
#cp -a remotes/* %{buildroot}%{_sysconfdir}/lirc
|
#cp -a remotes/* %{buildroot}%{_sysconfdir}/lirc
|
||||||
%makeinstall systemddir=%{_unitdir} VARRUNDIR=/run
|
%makeinstall \
|
||||||
|
systemddir=%{_unitdir} \
|
||||||
|
VARRUNDIR=/run \
|
||||||
|
STRIP=/bin/true
|
||||||
|
|
||||||
install -D -m0644 doc/plugindocs.mk %{buildroot}%{_docdir}/lirc/plugindocs/plugindocs.mk
|
install -D -m0644 doc/plugindocs.mk %{buildroot}%{_docdir}/lirc/plugindocs/plugindocs.mk
|
||||||
|
|
||||||
@ -86,7 +93,8 @@ cat > %{buildroot}%{_tmpfilesdir}/lircd.conf << _EOF
|
|||||||
d /run/lirc 755 root root
|
d /run/lirc 755 root root
|
||||||
_EOF
|
_EOF
|
||||||
|
|
||||||
:<< _EOF
|
rm -f %{buildroot}%{_datadir}/lirc/lirc-%{version}.tar.gz
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
@ -197,6 +205,9 @@ fi
|
|||||||
%doc ChangeLog NEWS README
|
%doc ChangeLog NEWS README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Dec 20 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.10.1-2mamba
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
* Tue Jun 05 2018 Automatic Build System <autodist@mambasoft.it> 0.10.1-1mamba
|
* Tue Jun 05 2018 Automatic Build System <autodist@mambasoft.it> 0.10.1-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user