mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
bdist_rpm fixes
This commit is contained in:
parent
4d05a9dfc9
commit
8a723474ed
2 changed files with 5 additions and 1 deletions
|
@ -7,6 +7,6 @@ include deluge.png
|
|||
include msgfmt.py
|
||||
recursive-include libtorrent/ *
|
||||
recursive-include glade/ *.glade
|
||||
recursive-include pixmaps/ *.png
|
||||
recursive-include pixmaps/ *.png *.svg
|
||||
recursive-include plugins/ *
|
||||
recursive-include po/ *
|
||||
|
|
4
setup.py
4
setup.py
|
@ -231,6 +231,8 @@ class write_data_install_path(cmd.Command):
|
|||
conf_file.write(data)
|
||||
conf_file.close()
|
||||
|
||||
def get_outputs(self): return []
|
||||
|
||||
class unwrite_data_install_path(cmd.Command):
|
||||
description = 'undoes write_data_install_path'
|
||||
|
||||
|
@ -247,6 +249,8 @@ class unwrite_data_install_path(cmd.Command):
|
|||
'deluge', 'common.py')
|
||||
shutil.copyfile('src/common.py', dest)
|
||||
|
||||
def get_outputs(self): return []
|
||||
|
||||
class build_trans(cmd.Command):
|
||||
description = 'Compile .po files into .mo files'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue