
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7161 212acab6-be3b-0410-9dea-997c60f758d6
31 lines
510 B
Python
31 lines
510 B
Python
target = 'Modern UI'
|
|
|
|
docs = Split("""
|
|
Changelog.txt
|
|
License.txt
|
|
Readme.html
|
|
""")
|
|
|
|
doc_images = Split("""
|
|
closed.gif
|
|
header.gif
|
|
open.gif
|
|
screen1.png
|
|
screen2.png
|
|
""")
|
|
|
|
contribs = Split("""
|
|
ioSpecial.ini
|
|
System.nsh
|
|
""")
|
|
|
|
|
|
Import('defenv')
|
|
|
|
def join(prefix, list_):
|
|
return list(map(lambda x: '%s/%s' % (prefix, x), list_))
|
|
|
|
defenv.DistributeDocs(docs, path=target)
|
|
path = 'images'
|
|
defenv.DistributeDocs(join(path,doc_images), path='%s/%s'%(target,path))
|
|
defenv.DistributeContrib(contribs, path=target)
|