forked from strange/node-geoip
-
Notifications
You must be signed in to change notification settings - Fork 3
/
wscript
35 lines (26 loc) · 933 Bytes
/
wscript
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
30
31
32
33
34
35
import os
srcdir = os.path.abspath('.')
blddir = 'build'
target = 'ceoip'
VERSION = '0.0.1'
def set_options(opt):
opt.tool_options('compiler_cxx')
def configure(conf):
conf.check_tool('compiler_cxx')
conf.check_tool('node_addon')
conf.check_cxx(lib='GeoIP', mandatory=True, uselib_store='GeoIP')
def build(context, target=target):
obj = context.new_task_gen('cxx', 'shlib', 'node_addon')
obj.uselib = 'GeoIP'
obj.source = 'src/ceoip.cc'
obj.target = target
context.add_post_fun(move_addon)
def move_addon(context, target=target):
"""Move the compiled addon to the local lib directory. Previously compiled
versions of the addon are overwritten.
"""
filename = '%s.node' % target
from_path = os.path.join(srcdir, blddir, 'default', filename)
to_path = os.path.join(srcdir, 'lib', filename)
if os.path.exists(from_path):
os.rename(from_path, to_path)