moved 'share/' from setup.py to .cfg
authorEugene Gagarin <mosfet07@ya.ru>
Wed, 25 Feb 2009 14:41:45 +0000 (17:41 +0300)
committerEugene Gagarin <mosfet07@ya.ru>
Wed, 25 Feb 2009 14:41:45 +0000 (17:41 +0300)
setup.cfg
setup.py

index c725824..49f8847 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,3 +1,3 @@
 [install]
 install_scripts=/usr/bin
-install_data=/usr
+install_data=/usr/share
index b50d76e..a96cb0c 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -11,11 +11,11 @@ setup(name='findit',
       description='FindIT is a program for find some information on computer',
       platform='all',
       data_files = [
-                   ('share/icons/hicolor/26x26/apps/', ['./data/icons/26x26/findit.png']),
-                   ('share/icons/hicolor/64x64/apps/', ['./data/icons/64x64/findit.png']),
-                   ('share/applications/hildon/',      ['./data/findit.desktop']),
-                   ('share/findit/',                   ['./src/findit.py']),
-                   ('share/locale/ru/LC_MESSAGES/',    ['./po/ru/findit.mo']),
-                   ('share/locale/ru_RU/LC_MESSAGES/', ['./po/ru/findit.mo'])
+                   ('icons/hicolor/26x26/apps/', ['./data/icons/26x26/findit.png']),
+                   ('icons/hicolor/64x64/apps/', ['./data/icons/64x64/findit.png']),
+                   ('applications/hildon/',      ['./data/findit.desktop']),
+                   ('findit/',                   ['./src/findit.py']),
+                   ('locale/ru/LC_MESSAGES/',    ['./po/ru/findit.mo']),
+                   ('locale/ru_RU/LC_MESSAGES/', ['./po/ru/findit.mo'])
                    ]
      )