gstreamer/validate/tools/gst-validate-launcher.in
2014-06-17 15:10:41 +02:00

40 lines
1.3 KiB
Python

#!/usr/bin/env python2
#
# Copyright (c) 2014,Thibault Saunier <thibault.saunier@collabora.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
# Boston, MA 02110-1301, USA.
import os
import sys
LIBDIR = '@LIBDIR@'
def _in_devel():
root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
return os.path.exists(os.path.join(root_dir, '.git'))
def _add_gst_launcher_path():
if not _in_devel():
root = os.path.join(LIBDIR, 'gst-validate-launcher', 'python')
sys.path.insert(0, root)
if "__main__" == __name__:
_add_gst_launcher_path()
from launcher.main import main
exit(main())