android: Update app-specific/MIME type icons
[LibreOffice.git] / scp2 / source / python / module_python.scp
blob343ad94029fb6f627bc3aa4001802eec0ff4f251
1 /*
2  * This file is part of the LibreOffice project.
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  *
8  * This file incorporates work covered by the following license notice:
9  *
10  *   Licensed to the Apache Software Foundation (ASF) under one or more
11  *   contributor license agreements. See the NOTICE file distributed
12  *   with this work for additional information regarding copyright
13  *   ownership. The ASF licenses this file to you under the Apache
14  *   License, Version 2.0 (the "License"); you may not use this file
15  *   except in compliance with the License. You may obtain a copy of
16  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
17  */
19 #include "macros.inc"
21 #ifndef DISABLE_PYUNO
23 #include "AutoInstall/python"
24 #include "AutoInstall/python_scriptprovider"
26 Module gid_Module_Pyuno
27 #ifdef ENABLE_LIBRELOGO
28     PackageInfo = "packinfo_office.txt";
29 #else
30     PackageInfo = "packinfo_librelogo_disabled.txt";
31 #endif
32     ParentID = gid_Module_Root_Brand;
33     Name = "PyUNO";
34     Description = "Python-UNO bridge";
35     Dirs = (gid_Dir_PythonFramework,
36             gid_Dir_PythonFramework_Versions,
37             gid_Dir_PythonFramework_Versions_ver,
38             gid_Dir_PythonFramework_Versions_ver_bin,
39             gid_Dir_PythonFramework_Versions_ver_lib,
40             gid_Dir_PythonFramework_Versions_ver_lib_pkgconfig,
41             gid_Dir_PythonFramework_Versions_ver_lib_pythonver,
42             gid_Dir_PythonFramework_Versions_ver_lib_pythonver_config,
43             gid_Dir_Py_PythonCore,
44             gid_Dir_Py_PythonCore_Bin,
45             gid_Dir_Py_PythonCore_Lib);
46     Files = (auto_python_ALL,
47              gid_File_Pyuno_Rdb,
48              gid_File_Lib_Python_So,
49              gid_File_Lib_Python3_So,
50              gid_File_Share_Registry_Pyuno_Xcd);
51     Unixlinks = (gid_Unixlink_Python_Headers,
52                  gid_Unixlink_Python_LibreOfficePython,
53                  gid_Unixlink_Python_Resources,
54                  gid_Unixlink_Python_Versions_Current,
55                  gid_Unixlink_Python_Versions_ver_Headers,
56                  gid_Unixlink_Python_bin_idle,
57                  gid_Unixlink_Python_bin_pydoc,
58                  gid_Unixlink_Python_bin_python,
59                  gid_Unixlink_Python_bin_pythonconfig,
60                  gid_Unixlink_Python_bin_pythonw,
61                  gid_Unixlink_Python_bin_pyvenv,
62                  gid_Unixlink_Python_libpython,
63                  gid_Unixlink_Python_libpython_m,
64                  gid_Unixlink_Python_pkgconfig,
65                  gid_Unixlink_Python_pkgconfig_m,
66                  gid_Unixlink_Python_libpython_config_a,
67                  gid_Unixlink_Python_libpython_config_dylib,
68                  gid_Unixlink_Python_libpython_m_config_a,
69                  gid_Unixlink_Python_libpython_m_config_dylib);
70     Styles = (HIDDEN_ROOT);
71 End
73 Module gid_Module_Script_Provider_For_Python
74     Name = "Script Provider For Python";
75     Description = "Script Provider For Python";
76     PackageInfo = "packinfo_office.txt";
77     ParentID = gid_Module_Root_Brand;
78     Files = (auto_python_scriptprovider_ALL);
79     Default = YES;
80     Styles = (HIDDEN_ROOT);
81 End
83 #endif