Merge "Merge branch 'security-summit' into 'master'"
[platform/upstream/iotivity.git] / extlibs / sqlite3 / SConscript
1 ##
2 # Script to install (if they do not exist) the SQLite library
3 ##
4
5 import os
6 import shutil
7
8 Import('env')
9 sqlite_env = env.Clone()
10
11 target_os = sqlite_env.get('TARGET_OS')
12 src_dir = sqlite_env.get('SRC_DIR')
13
14 targets_need_sqlite = ['linux', 'android']
15 sqlite_dir      = src_dir + '/extlibs/sqlite3/'
16 sqlite_build_dir      = src_dir + '/extlibs/sqlite3/sqlite-amalgamation-3081101/'
17 sqlite_zip_file = src_dir + '/extlibs/sqlite3/sqlite-amalgamation-3081101.zip'
18 sqlite_url      = 'http://www.sqlite.org/2015/sqlite-amalgamation-3081101.zip'
19
20 # Download
21 if target_os in targets_need_sqlite:
22         print '*** Checking for installation of SQLite 3.8.11.1 ***'
23         if not os.path.exists(sqlite_dir + 'sqlite3.c') or not os.path.exists(sqlite_dir + 'sqlite3.h'):
24
25             # If the zip file is not already present, download it
26                 if not os.path.exists(sqlite_zip_file):
27                         sqlite_zip = sqlite_env.Download(sqlite_zip_file, sqlite_url)
28                 else:
29                         sqlite_zip = sqlite_zip_file
30
31                 # Unzip the lib
32                 print 'Unzipping SQLite amalgamation src...'
33                 sqlite_env.UnpackAll(sqlite_build_dir, sqlite_zip)
34                 print 'Unzipping SQLite amalgamation src complete'
35
36                 # Move requried src and header
37                 os.rename(sqlite_build_dir + 'sqlite3.c', sqlite_dir + 'sqlite3.c')
38                 os.rename(sqlite_build_dir + 'sqlite3.h', sqlite_dir + 'sqlite3.h')
39                 os.remove(sqlite_zip_file)
40                 shutil.rmtree(sqlite_build_dir)
41
42 # Build will be done with provisioning manager module.