Merge branch 'bug_274_disable_fast_winding_for_non_ts' into experimental
[vuplus_dvbapp] / lib / python / Plugins / newplugin.py
index c84f060..48bb28e 100644 (file)
@@ -134,4 +134,13 @@ def Plugins(**kwargs):
        return %s
        """ % descriptorlist)
 
-file.close()
\ No newline at end of file
+file.close()
+
+makefile = open(pluginpath + "/Makefile.am", "w")
+makefile.write("""installdir = $(LIBDIR)/enigma2/python/Plugins/%s/%s
+
+install_PYTHON = \\
+       __init__.py \\
+       plugin.py
+""" % (category, internalname))
+makefile.close()