E2 OpenPLi 9 is installed in the box. I created a plugin that works and I need to create an ipk from it. The plugin is located in
XML
<?xml version="1.0" encoding="UTF-8" ?>
<plugins>
<plugin name="my_plugin" version="1.0" author="YourName" description="my_plugin" where="extensions">
<file>plugin.py</file>
</plugin>
</plugins>
Here is how I create an ipk package (I use linux mint to create an ipk).
Code
mkdir -p my_plugin/usr/lib/enigma2/python/Plugins/Extensions/my_plugin
mkdir -p my_plugin/CONTROL
cp plugin.py plugin.xml my_plugin/usr/lib/enigma2/python/Plugins/Extensions/my_plugin/
touch my_plugin/CONTROL/control
Code
Package: enigma2-plugin-extensions-my_plugin
Version: 1.0
Architecture: all
Maintainer: gusto
Description: my_plugin
Code
cd my_plugin
tar -czvf data.tar.gz ./usr
tar -czvf control.tar.gz ./CONTROL
echo "2.0" > debian-binary
ar r enigma2-plugin-extensions-my_plugin_1.0_all.ipk control.tar.gz data.tar.gz debian-binary
The package is created. I copy the package to /tmp in the box and write the installation command.
However, the installation always ends with a message