OTHER: add system skin path to manpage

This commit is contained in:
Thomas Frauendorfer 2009-09-11 19:47:54 +02:00
parent f7d2848f18
commit 43516c9431
3 changed files with 16 additions and 3 deletions

View file

@ -36,7 +36,9 @@ POSSIBILITY OF SUCH DAMAGE.
def set_options(opt):
pass
def configure(conf):
pass
conf.check_tool('misc')
def build(bld):
obj = bld.new_task_gen('qt4', 'cxx')
obj.target = 'promoe_data'
@ -44,6 +46,10 @@ def build(bld):
obj.source = 'skins/Almond-blue.qrc'
obj.uselib = 'QTCORE'
man = bld.new_task_gen('subst')
man.source = 'promoe.1.in'
man.install_path = '${MANDIR}/man1'
bld.install_files('${MANDIR}/man1', 'promoe.1')
bld.install_files('${DATADIR}/applications', 'promoe.desktop')
bld.install_files('${DATADIR}/icons', 'icons/ashton-flame1/promoe.svg')