From c07d2baf652893549951f7fd0b0d68f38cad56d3 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Thu, 20 Dec 2018 10:15:00 +0100 Subject: Complete setup script --- setup.py | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1dc43c8..857e405 100644 --- a/setup.py +++ b/setup.py @@ -2,22 +2,27 @@ from distutils.core import setup from distutils.command.build import build import os, glob -LOCALE_DIR= '/usr/share/mageiawelcome/translations' - class BuildQm(build): for po in glob.glob('po/*.po'): - os.system('lconvert {} -o i18n/mageiawelcome_{}.ts'.format(po, os.path.splitext("path_to_file")[0])) + os.system('lconvert {} -o i18n/mageiawelcome_{}.ts'.format(po, os.path.splitext(os.path.basename(po))[0])) for ts in glob.glob('i18n/*.ts'): os.system('lrelease {0} -qm {1}'.format(ts, (ts[:-2]+'qm'))) - os.system("rm -f i18n/*.ps") + os.system("rm -f i18n/*.ts") + os.system('intltool-merge --desktop-style po usr/share/applications/mageiawelcome.desktop.in usr/share/applications/mageiawelcome.desktop') + -data_files = [("share/applications/", ["share/applications/mageiawelcome.desktop"]), - ("share/icons/hicolor/scalable/apps/", ["share/icons/mageiawelcome.svg"]), +data_files = [("bin",["usr/bin/mageiawelcome","usr/bin/mageiawelcome-launcher"]), + ("share/applications/", ["usr/share/applications/mageiawelcome.desktop"]), + ("share/icons/hicolor/scalable/apps/", ["usr/share/icons/scalable/apps/mageiawelcome.svg"]), + ("share/mageiawelcome/",glob.glob('qml/*.py')), + ("share/mageiawelcome/",glob.glob('qml/*.qml')), + ("share/mageiawelcome/img",glob.glob('qml/img/*')), ("share/mageiawelcome/translations/",glob.glob('i18n/*.qm')), + ("etc/xdg/autostart/",["etc/xdg/autostart/mageiawelcome.desktop"]), ] setup( - name = 'mageiasync', + name = 'mageiawelcome', version = '1.90', license = 'GNU General Public License v3 (GPLv3)', url = 'http://gitweb.mageia.org/software/mageiawelcome', -- cgit v1.2.1