1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2015 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
import os
import sys
from glob import glob
from setuptools import setup
import DistUtilsExtra.command.build_extra
import DistUtilsExtra.command.build_i18n
import DistUtilsExtra.command.clean_i18n
# to update i18n .mo files (and merge .pot file into .po files) run on Linux:
# tx pull -a
# python setup.py build_i18n -m
# tx push -s
# silence pyflakes, __VERSION__ is properly assigned below...
__VERSION__ = '0.0.0.0'
for line in open('lib/mate-menu.py').readlines():
if (line.startswith('__VERSION__')):
exec(line.strip())
break
PROGRAM_VERSION = __VERSION__
def datafilelist(installbase, sourcebase):
datafileList = []
for root, subFolders, files in os.walk(sourcebase):
fileList = []
for f in files:
fileList.append(os.path.join(root, f))
datafileList.append((root.replace(sourcebase, installbase), fileList))
return datafileList
data_files = [
("share/man/man1".format(prefix=sys.prefix), glob("data/*.1")),
("share/glib-2.0/schemas".format(prefix=sys.prefix),
[
"data/org.mate.mate-menu.gschema.xml"
] + glob("data/plugins/org.mate.mate-menu.plugins.*.gschema.xml"),
),
("share/mate-panel/applets".format(prefix=sys.prefix),
[
"data/org.mate.panel.MateMenuApplet.mate-panel-applet",
]
),
("share/dbus-1/services".format(prefix=sys.prefix),
[
"data/org.mate.panel.applet.MateMenuAppletFactory.service",
]
),
("share/mate-menu".format(prefix=sys.prefix),
[
"data/mate-menu.glade",
"data/mate-menu-config.glade",
"data/popup.xml",
"data/applications.list",
]
),
("share/mate-menu/plugins".format(prefix=sys.prefix),
[
"data/plugins/applications.glade",
"data/plugins/system_management.glade",
"data/plugins/places.glade",
"data/plugins/recent.glade",
]
),
("share/mate-menu/icons/search_engines".format(prefix=sys.prefix),
[
"data/icons/ddg.png",
"data/icons/google.png",
"data/icons/wikipedia.png",
]
),
("lib/mate-menu".format(prefix=sys.prefix), glob("lib/*.py*")),
]
data_files.extend(datafilelist("share/locale", 'build/mo'))
if sys.argv[1] == "build":
import compileall
compileall.compile_dir("lib")
cmdclass = {
"build" : DistUtilsExtra.command.build_extra.build_extra,
"build_i18n" : DistUtilsExtra.command.build_i18n.build_i18n,
}
setup(
name = "mate-menu",
version = PROGRAM_VERSION,
description = "An advanced menu for MATE. Supports filtering, favorites, autosession, and many other features.",
license = 'GPLv2+',
author = 'Martin Wimpress',
url = 'https://github.com/ubuntu-mate/mate-menu/',
packages = [ 'mate_menu', 'mate_menu.plugins', ],
# package_dir = {
# '': '.',
# },
data_files = data_files,
install_requires = [ 'setuptools', 'configobj' ],
scripts = [ 'mate-menu' ],
cmdclass = cmdclass,
zip_safe = True,
)
|