root/ossiedev/trunk/components/OSSIETalk/setup.py @ 9585

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
3from distutils.core import setup
4import sys
5
6install_location = '/sdr/dom/'
7
8if len(sys.argv) != 2:
9        sys.exit(1)
10
11sys.argv.append('--install-lib='+install_location)
12
13setup(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     )
Note: See TracBrowser for help on using the browser.