I have a simple python script addon that I would like to add.
I have these files:
addon.xml
default.py
icon.png
and this is my package I got the example from script.config.vdr:
Code
PKG_NAME="script.simple.launcher"
PKG_VERSION=""
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="OSS"
PKG_SITE=""
PKG_URL=""
PKG_DEPENDS_TARGET=""
PKG_SECTION=""
PKG_SHORTDESC="Simple Launcher"
PKG_LONGDESC="Simple Launcher"
PKG_AUTORECONF="no"
PKG_IS_ADDON="yes"
PKG_ADDON_NAME="Simple Launcher"
PKG_ADDON_TYPE="xbmc.python.script"
make_target() {
: # nothing to do here
}
makeinstall_target() {
: # nothing to do here
}
addon() {
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID
cp -PR $PKG_DIR/addon/* $ADDON_BUILD/$PKG_ADDON_ID
}
Display More
Everything builds correctly, no errors, but the add-on does not appear in Kodi, anyone know what am I missing?
Thank you!