summaryrefslogtreecommitdiffstats
path: root/third_party/wscript_build
blob: 9a5fabc054451885d1763c9a2e6ddaafe0f974d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python

import os

# work out what python external libraries we need to install
external_libs = {
    "dns.resolver": "dnspython/dns",
    "iso8601": "pyiso8601",
    }

list = []

for module, package in external_libs.items():
    try:
        __import__(module)
    except ImportError:
        list.append(package)

for e in list:
    bld.INSTALL_WILDCARD('${PYTHONARCHDIR}/samba/third_party', e + '/**/*', flat=False,
                         exclude='*.pyc', trim_path=os.path.dirname(e))

bld.SAMBA_GENERATOR('third_party_init_py',
                    rule='touch ${TGT}',
                    target='empty_file')

bld.INSTALL_FILES('${PYTHONARCHDIR}/samba/third_party', 'empty_file', destname='__init__.py')
bld.RECURSE('zlib')
bld.RECURSE('popt')