File: astroid

package info (click to toggle)
astroidmail 0.16%2B20240629-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 5,140 kB
  • sloc: cpp: 21,133; ansic: 1,619; python: 93; sh: 73; makefile: 11
file content (19 lines) | stat: -rwxr-xr-x 456 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/bash
#
# example launch script that sets up the GIR path and launches
# astroid from the source root directory, unbuffered, and logging to
# ~/.config/astroid/log
#
# IMPORTANT: This assumes that you build astroid in the 'build' sub-directory.
#
# Symlink this to somewhere on your path.
#

ASTROID_DIR=$(readlink -f $0)
export ASTROID_DIR=$(dirname $ASTROID_DIR)/..

# GIR
export GI_TYPELIB_PATH=$ASTROID_DIR/build

$ASTROID_DIR/build/astroid $*