source: setup.py@ 378:39ea6089286e

Last change on this file since 378:39ea6089286e was 378:39ea6089286e, checked in by István Váradi <ivaradi@…>, 11 years ago

Fixed the generation of Uninstall.conf

File size: 3.2 KB
RevLine 
[20]1# -*- coding: iso-8859-2 -*-
2
3import sys
4import os
5from glob import glob
6from distutils.core import setup
7
[37]8scriptdir=os.path.dirname(sys.argv[0])
9sys.path.insert(0, os.path.join(scriptdir, "src"))
[20]10
[27]11import mlx.const
[37]12import mlx.update
[20]13
[137]14data_files = [("sounds", glob(os.path.join("sounds", "*.*")))]
[287]15for language in ["en", "hu"]:
16 data_files.append((os.path.join("doc", "manual", language),
17 glob(os.path.join("doc", "manual", language, "*.*"))))
18 data_files.append((os.path.join("locale", language, "LC_MESSAGES"),
19 [os.path.join("locale", language, "LC_MESSAGES",
20 "mlx.mo")]))
[281]21data_files.append(("", ["logo.png",
22 "conn_grey.png", "conn_red.png", "conn_green.png"]))
[20]23if os.name=="nt":
24 import py2exe
25
[28]26 data_files.append(("", ["logo.ico"]))
[27]27
[20]28 msvcrDir = os.environ["MSVCRDIR"] if "MSVCRDIR" in os.environ else None
29 if msvcrDir:
30 data_files.append(("Microsoft.VC90.CRT", glob(os.path.join(msvcrDir, "*.*"))))
31
32 gtkRuntimeDir = os.environ["GTKRTDIR"] if "GTKRTDIR" in os.environ else None
33 if gtkRuntimeDir:
34 path = os.path.join("lib", "gtk-2.0", "2.10.0", "engines")
[37]35 data_files.append((os.path.join("library", path),
36 [os.path.join(gtkRuntimeDir, path, "libwimp.dll")]))
[20]37
38 path = os.path.join("share", "themes", "MS-Windows", "gtk-2.0")
[37]39 data_files.append((os.path.join("library", path),
40 glob(os.path.join(gtkRuntimeDir, path, "*"))))
[373]41
[159]42 path = os.path.join("share", "locale", "hu", "LC_MESSAGES")
43 data_files.append((os.path.join("library", path),
44 glob(os.path.join(gtkRuntimeDir, path, "*"))))
45 path = os.path.join("share", "icons", "hicolor")
46 data_files.append((os.path.join("library", path),
47 glob(os.path.join(gtkRuntimeDir, path, "*"))))
[373]48
[20]49 with open("mlx-common.nsh", "wt") as f:
[27]50 print >>f, '!define MLX_VERSION "%s"' % (mlx.const.VERSION)
[20]51 f.close()
52
53long_description="""MAVA Logger X
54
55This is a program to log and evaluate the actions
56of a pilot flying a virtual Malév flight operated
57by MAVA."""
58
59setup(name = "mlx",
[27]60 version = mlx.const.VERSION,
[20]61 description = "MAVA Logger X",
62 long_description = long_description,
63 author = "István Váradi",
64 author_email = "ivaradi@gmail.com",
65 url = "http://mlx.varadiistvan.hu",
66 package_dir = { "" : "src" },
[28]67 packages = ["mlx", "mlx.gui"],
[20]68 requires = ["pyuipc"],
[27]69 windows = [{ "script" : "runmlx.py",
[36]70 "icon_resources" : [(1, "logo.ico")]},
71 { "script" : "mlxupdate.py",
72 "uac_info" : "requireAdministrator"}],
[37]73 options = { "py2exe" : { "includes": "gio, pango, atk, pangocairo",
74 "skip_archive": True} },
75 zipfile = "library/.",
[20]76 data_files = data_files,
77 platforms = ["Win32", "Linux"],
78 license = "Public Domain"
79 )
[37]80
81if os.name=="nt":
82 mlx.update.buildManifest(os.path.join(scriptdir, "dist"))
[378]83 with open(os.path.join(scriptdir, "dist", "Uninstall.conf"), "wt") as f:
84 print >> f, "StartMenuFolder=MAVA Logger X"
85 print >> f, "LinkName=MAVA Logger X"
Note: See TracBrowser for help on using the repository browser.