mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-23 14:26:41 +00:00
32 lines
816 B
XML
32 lines
816 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<addon id="@PKG_ADDON_ID@"
|
|
name="@ADDON_NAME@"
|
|
version="@ADDON_VERSION@"
|
|
provider-name="@PROVIDER_NAME@">
|
|
<requires>
|
|
<import addon="xbmc.python" version="3.0.0"/>
|
|
@REQUIRES@
|
|
</requires>
|
|
<extension point="xbmc.python.script" library="default.py" />
|
|
<extension point="xbmc.python.module" library="lib/">
|
|
</extension>
|
|
<extension point="xbmc.addon.metadata">
|
|
<summary>@PKG_SHORTDESC@</summary>
|
|
<description>
|
|
@PKG_LONGDESC@
|
|
</description>
|
|
<disclaimer>
|
|
@PKG_DISCLAIMER@
|
|
</disclaimer>
|
|
<platform>all</platform>
|
|
<news>
|
|
@PKG_ADDON_NEWS@
|
|
</news>
|
|
<assets>
|
|
<icon>resources/icon.png</icon>
|
|
<fanart>resources/fanart.png</fanart>
|
|
@PKG_ADDON_SCREENSHOT@
|
|
</assets>
|
|
</extension>
|
|
</addon>
|