summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py19
1 files changed, 12 insertions, 7 deletions
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',