Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / infra / bots / assets / cmake_linux / create.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2018 Google Inc.
4 #
5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file.
7
8
9 """Create the asset."""
10
11
12 import argparse
13 import os
14 import subprocess
15 import sys
16
17 FILE_DIR = os.path.dirname(os.path.abspath(__file__))
18 INFRA_BOTS_DIR = os.path.realpath(os.path.join(FILE_DIR, os.pardir, os.pardir))
19 sys.path.insert(0, INFRA_BOTS_DIR)
20 import utils
21
22
23 VERSION = '3.13.5'
24 URL = 'https://cmake.org/files/v%s/cmake-%s-Linux-x86_64.tar.gz' % (
25     VERSION.rsplit('.', 1)[0], VERSION)
26
27
28 def create_asset(target_dir):
29   """Create the asset."""
30   with utils.tmp_dir():
31     subprocess.check_call(['curl', URL, '-o', 'cmake.tar.gz'])
32     subprocess.check_call(['tar', '--extract', '--gunzip', '--file',
33                            'cmake.tar.gz', '--directory', target_dir,
34                            '--strip-components', '1'])
35
36
37 def main():
38   parser = argparse.ArgumentParser()
39   parser.add_argument('--target_dir', '-t', required=True)
40   args = parser.parse_args()
41   create_asset(args.target_dir)
42
43
44 if __name__ == '__main__':
45   main()