diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-10 15:39:00 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-10 15:39:00 +0000 |
| commit | 91890bc31f2752aa8ff55372aa69a6723a0c09b5 (patch) | |
| tree | d9d558536109e919c410127a62b7873829f48df2 /lib/python/Plugins | |
| parent | f1515e774761f54062c718ef23361800df65accb (diff) | |
| download | enigma2-91890bc31f2752aa8ff55372aa69a6723a0c09b5.tar.gz enigma2-91890bc31f2752aa8ff55372aa69a6723a0c09b5.zip | |
move the plugins into their own directory and every plugin has a main python file called plugin.py in his directory
for example the update plugin now resides in /usr/lib/enigma2/python/Plugins/update
when you add a plugin, don't forget to put an empty __init__.py file into the directory, otherwise python doesn't recognize
the directory as module
Diffstat (limited to 'lib/python/Plugins')
| -rw-r--r-- | lib/python/Plugins/Makefile.am | 7 | ||||
| -rw-r--r-- | lib/python/Plugins/update/Makefile.am (renamed from lib/python/Plugins/update.png) | 0 | ||||
| -rw-r--r-- | lib/python/Plugins/update/update.png (renamed from lib/python/Plugins/update.py) | 0 |
3 files changed, 4 insertions, 3 deletions
diff --git a/lib/python/Plugins/Makefile.am b/lib/python/Plugins/Makefile.am index 47e6cec2..21dcb9c8 100644 --- a/lib/python/Plugins/Makefile.am +++ b/lib/python/Plugins/Makefile.am @@ -1,7 +1,8 @@ installdir = $(LIBDIR)/enigma2/python/Plugins +SUBDIRS = update + install_PYTHON = \ - __init__.py \ - update.py \ - update.png + __init__.py + diff --git a/lib/python/Plugins/update.png b/lib/python/Plugins/update/Makefile.am index e69de29b..e69de29b 100644 --- a/lib/python/Plugins/update.png +++ b/lib/python/Plugins/update/Makefile.am diff --git a/lib/python/Plugins/update.py b/lib/python/Plugins/update/update.png index e69de29b..e69de29b 100644 --- a/lib/python/Plugins/update.py +++ b/lib/python/Plugins/update/update.png |
