package created using the webbuild interface [release 20160811git-1mamba;Thu Aug 11 2016]

This commit is contained in:
Silvan Calarco 2024-01-05 23:58:45 +01:00
parent a01de48e49
commit f6eb8bcb33
2 changed files with 52 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# irtoy-fw_update # irtoy-fw_update
Diolan firmware update tool for PIC 18F2550 used in USB IR Toy.

50
irtoy-fw_update.spec Normal file
View File

@ -0,0 +1,50 @@
Name: irtoy-fw_update
Version: 20160811git
Release: 1mamba
Summary: Diolan firmware update tool for PIC 18F2550 used in USB IR Toy
Group: System/Kernel and Hardware
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://dangerousprototypes.com/docs/USB_IR_Toy_firmware_update
## GITSOURCE https://github.com/dpavlin/fw_update.git master
Source: https://github.com/dpavlin/fw_update.git/master/fw_update-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libstdc++6-devel
BuildRequires: libusb-compat-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Diolan firmware update tool for PIC 18F2550 used in USB IR Toy.
%debug_package
%prep
%setup -q -n fw_update-%{version}
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
mv %{buildroot}%{_bindir}/fw_update %{buildroot}%{_bindir}/irtoy-fw_update
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/irtoy-fw_update
%doc AUTHORS COPYING
%doc ChangeLog README TODO
%changelog
* Thu Aug 11 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 20160811git-1mamba
- package created using the webbuild interface