diff options
| author | glatzor@ubuntu.com <> | 2006-07-21 23:13:48 +0200 |
|---|---|---|
| committer | glatzor@ubuntu.com <> | 2006-07-21 23:13:48 +0200 |
| commit | f5acaf7e44c59fd542e7dc40549a519a08a39a8a (patch) | |
| tree | 26ae31514fd70454825ddf91cbdd0e67ace9844e /setup.py | |
| parent | faa8e24031b9dfb788aa51e50770b7f572f18e9d (diff) | |
| download | python-apt-f5acaf7e44c59fd542e7dc40549a519a08a39a8a.tar.gz | |
* moved all glade and channels files into subdirectories of data
* do not install obsolete files to update-manager/channels
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -45,7 +45,7 @@ os.system("cd po; make update-po") # do the same for the desktop files os.system("cd data; make") # and channels -os.system("cd channels; make") +os.system("cd data/channels; make") setup(name='update-manager', version='0.42.2', @@ -60,10 +60,13 @@ setup(name='update-manager', ], data_files=[ ('share/update-manager/glade', - glob.glob("data/*.glade") + glob.glob("data/glade/*.glade") + ), + ('share/doc/update-manager', + glob.glob("data/channels/README.channels") ), ('share/update-manager/channels', - glob.glob("channels/*") + glob.glob("data/channels/*.info") ), ('share/applications', ["data/update-manager.desktop", @@ -74,5 +77,3 @@ setup(name='update-manager', ), ] + I18NFILES + HELPFILES + ICONS, ) - - |
