Mercurial > hg > vamp-aubio-plugins
comparison wscript @ 170:02093f7d3d0a
wscript: improve dist target
author | Paul Brossier <piem@piem.org> |
---|---|
date | Mon, 13 Feb 2017 16:40:21 +0100 |
parents | 1b130bdec0ca |
children | bd719b78c8d7 |
comparison
equal
deleted
inserted
replaced
169:d90e53e908d3 | 170:02093f7d3d0a |
---|---|
123 if install_path: | 123 if install_path: |
124 bld.install_files( install_path, ['vamp-aubio.cat', 'vamp-aubio.n3']) | 124 bld.install_files( install_path, ['vamp-aubio.cat', 'vamp-aubio.n3']) |
125 | 125 |
126 #for k in bld.env.keys(): | 126 #for k in bld.env.keys(): |
127 # print ("%s : %s", k, bld.env[k] ) | 127 # print ("%s : %s", k, bld.env[k] ) |
128 | |
129 def dist(ctx): | |
130 ctx.excl = '**/.waf-1* **/*~ **/*.pyc **/*.swp **/.lock-w* **/.git*' | |
131 ctx.excl += ' **/**.tar.bz2' | |
132 ctx.excl += ' contrib/**' | |
133 ctx.excl += ' build/**' | |
134 ctx.excl += ' **/.travis.yml' | |
135 ctx.excl += ' **/.appveyor.yml' |