blob: 0a28dd7c0c57c94c5475e8c8e4a2879a96ca502c [file] [log] [blame]
Eric Engestromdcba7732019-03-26 10:55:37 +00001#!/usr/bin/env python3
Dylan Baker32180562017-09-20 20:11:32 -07002# encoding=utf-8
Eric Engestromdcba7732019-03-26 10:55:37 +00003# Copyright 2017-2018 Intel Corporation
Dylan Baker32180562017-09-20 20:11:32 -07004
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to deal
7# in the Software without restriction, including without limitation the rights
8# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9# copies of the Software, and to permit persons to whom the Software is
10# furnished to do so, subject to the following conditions:
11
12# The above copyright notice and this permission notice shall be included in
13# all copies or substantial portions of the Software.
14
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21# SOFTWARE.
22
23"""Script to install megadriver symlinks for meson."""
24
25from __future__ import print_function
26import argparse
27import os
Dylan Baker32180562017-09-20 20:11:32 -070028
29
30def main():
31 parser = argparse.ArgumentParser()
32 parser.add_argument('megadriver')
33 parser.add_argument('libdir')
34 parser.add_argument('drivers', nargs='+')
35 args = parser.parse_args()
36
Dylan Bakerae3f45c2018-04-09 13:53:09 -070037 if os.path.isabs(args.libdir):
Dylan Bakered960382019-03-21 09:09:20 -070038 destdir = os.environ.get('DESTDIR')
39 if destdir:
40 to = os.path.join(destdir, args.libdir[1:])
41 else:
42 to = args.libdir
Dylan Bakerae3f45c2018-04-09 13:53:09 -070043 else:
44 to = os.path.join(os.environ['MESON_INSTALL_DESTDIR_PREFIX'], args.libdir)
45
Dylan Baker32180562017-09-20 20:11:32 -070046 master = os.path.join(to, os.path.basename(args.megadriver))
47
48 if not os.path.exists(to):
Gert Wollny7a46b2d2018-08-03 11:47:28 +020049 if os.path.lexists(to):
50 os.unlink(to)
Dylan Baker32180562017-09-20 20:11:32 -070051 os.makedirs(to)
Dylan Baker32180562017-09-20 20:11:32 -070052
Dylan Baker10e42902018-04-09 13:59:55 -070053 for driver in args.drivers:
54 abs_driver = os.path.join(to, driver)
Dylan Bakerf7f1b302017-11-09 17:52:31 -080055
Gert Wollny7a46b2d2018-08-03 11:47:28 +020056 if os.path.lexists(abs_driver):
Dylan Baker10e42902018-04-09 13:59:55 -070057 os.unlink(abs_driver)
58 print('installing {} to {}'.format(args.megadriver, abs_driver))
59 os.link(master, abs_driver)
Dylan Bakerf7f1b302017-11-09 17:52:31 -080060
61 try:
62 ret = os.getcwd()
63 os.chdir(to)
64
Dylan Baker10e42902018-04-09 13:59:55 -070065 name, ext = os.path.splitext(driver)
Dylan Bakerf7f1b302017-11-09 17:52:31 -080066 while ext != '.so':
Gert Wollny7a46b2d2018-08-03 11:47:28 +020067 if os.path.lexists(name):
Dylan Bakerf7f1b302017-11-09 17:52:31 -080068 os.unlink(name)
Dylan Baker10e42902018-04-09 13:59:55 -070069 os.symlink(driver, name)
Dylan Bakerf7f1b302017-11-09 17:52:31 -080070 name, ext = os.path.splitext(name)
71 finally:
72 os.chdir(ret)
Eric Engestromc77acc32019-04-09 09:28:17 +010073
74 # Remove meson-created master .so and symlinks
Dylan Baker32180562017-09-20 20:11:32 -070075 os.unlink(master)
Eric Engestromc77acc32019-04-09 09:28:17 +010076 name, ext = os.path.splitext(master)
77 while ext != '.so':
78 if os.path.lexists(name):
79 os.unlink(name)
80 name, ext = os.path.splitext(name)
Dylan Baker32180562017-09-20 20:11:32 -070081
82
83if __name__ == '__main__':
84 main()