b7197c9e432eefe6ca44d5ff44b0cd723905fbb8
[gnome.gobject-introspection] / tools / g-ir-scanner.in
1 #!/usr/bin/env python
2 # -*- Mode: Python -*-
3 # GObject-Introspection - a framework for introspecting GObject libraries
4 # Copyright (C) 2008  Johan Dahlin
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20 #
21
22 import os
23 import sys
24
25 # This only works on unix systems
26 currentdir = os.path.dirname(os.path.abspath(sys.argv[0]))
27 basedir = os.path.abspath(os.path.join(currentdir, '..'))
28 if (os.path.exists(os.path.join(basedir, '.svn')) or
29     os.path.exists(os.path.join(basedir, '.git'))):
30     path = basedir
31 else:
32     # This is a private directory, we don't want to pollute the global
33     # namespace.
34     path = os.path.join('@libdir@', 'gobject-introspection')
35 sys.path.insert(0, path)
36
37 from giscanner.scannermain import scanner_main
38
39 sys.exit(scanner_main(sys.argv))