Make NSIS script install syncplay.lua to /lua/intf/ folder

This commit is contained in:
Etoh 2013-08-08 00:04:01 +01:00
parent 5a57c3843e
commit 89e98282af

View File

@ -517,8 +517,9 @@ guiIcons = ['resources/accept.png', 'resources/arrow_undo.png', 'resources/clock
'resources/folder_explore.png', 'resources/help.png', 'resources/table_refresh.png', 'resources/folder_explore.png', 'resources/help.png', 'resources/table_refresh.png',
'resources/timeline_marker.png' 'resources/timeline_marker.png'
] ]
resources = ["resources/lua/intf/syncplay.lua", "resources/icon.ico", "resources/syncplay.png"] resources = ["resources/icon.ico", "resources/syncplay.png"]
resources.extend(guiIcons) resources.extend(guiIcons)
intf_resources = ["resources/lua/intf/syncplay.lua"]
common_info = dict( common_info = dict(
name='Syncplay', name='Syncplay',
@ -542,7 +543,7 @@ info = dict(
'compressed': 1 'compressed': 1
} }
}, },
data_files = [("resources", resources)], data_files = [("resources", resources),("resources/lua/intf", intf_resources)],
zipfile = "lib/libsync", zipfile = "lib/libsync",
cmdclass = {"py2exe": build_installer}, cmdclass = {"py2exe": build_installer},
) )