|
Revision 9585, 0.7 KB
(checked in by shereef, 4 years ago)
|
|
wavedash now installs correctly with the rest of the tool suite
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | #! /usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from distutils.core import setup |
|---|
| 4 | import sys |
|---|
| 5 | |
|---|
| 6 | install_location = '/sdr/dom/' |
|---|
| 7 | |
|---|
| 8 | if len(sys.argv) != 2: |
|---|
| 9 | sys.exit(1) |
|---|
| 10 | |
|---|
| 11 | sys.argv.append('--install-lib='+install_location) |
|---|
| 12 | |
|---|
| 13 | setup(name='OSSIETalk', |
|---|
| 14 | description='OSSIETalk', |
|---|
| 15 | data_files=[ |
|---|
| 16 | (install_location+'bin/OSSIETalk', |
|---|
| 17 | ['OSSIETalk.py', |
|---|
| 18 | 'WorkModules.py', |
|---|
| 19 | 'wx_inits.py', |
|---|
| 20 | 'port_impl.py', |
|---|
| 21 | 'cvsd.py']), |
|---|
| 22 | (install_location+'xml/OSSIETalk', |
|---|
| 23 | ['OSSIETalk.prf.xml', |
|---|
| 24 | 'OSSIETalk.scd.xml', |
|---|
| 25 | 'OSSIETalk.spd.xml']) |
|---|
| 26 | ] |
|---|
| 27 | ) |
|---|