diff --git a/README.md b/README.md index 04cc7f3..f8672ca 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # kodi-inputstream-adaptive +kodi inputstream addon for several manifest types. + diff --git a/kodi-inputstream-adaptive.spec b/kodi-inputstream-adaptive.spec new file mode 100644 index 0000000..5810d29 --- /dev/null +++ b/kodi-inputstream-adaptive.spec @@ -0,0 +1,53 @@ +%define majver %(echo %version | cut -d. -f1) +Name: kodi-inputstream-adaptive +Version: 19.0.1 +Release: 1mamba +Summary: kodi inputstream addon for several manifest types +Group: Graphical Desktop/Applications/Multimedia +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/xbmc/inputstream.adaptive +Source: https://github.com/xbmc/inputstream.adaptive.git/%{version}-Matrix/inputstream.adaptive-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libexpat-devel +BuildRequires: libgcc +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRequires: kodi-devel +Requires: kodi >= %{majver} +Requires: kodi < %{majver}.999 + +%description +kodi inputstream addon for several manifest types. + +%debug_package + +%prep +%setup -q -n inputstream.adaptive-%{version} + +%build +%cmake -d build + +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%dir %{_libdir}/kodi/addons/inputstream.adaptive +%{_libdir}/kodi/addons/inputstream.adaptive/* +%dir %{_datadir}/kodi/addons/inputstream.adaptive +%{_datadir}/kodi/addons/inputstream.adaptive/* + +%changelog +* Sat Jan 08 2022 Silvan Calarco 19.0.1-1mamba +- package created using the webbuild interface