mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
docs/faq/gst-uninstalled: Clarify the comments to make the usage of this script and what it does easier to understand.
Original commit message from CVS: * docs/faq/gst-uninstalled: Clarify the comments to make the usage of this script and what it does easier to understand.
This commit is contained in:
parent
19dae75b53
commit
2ef7296544
2 changed files with 25 additions and 12 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-01-03 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
|
* docs/faq/gst-uninstalled:
|
||||||
|
Clarify the comments to make the usage of this script and what it
|
||||||
|
does easier to understand.
|
||||||
|
|
||||||
2008-01-01 Thijs Vermeir <thijsvermeir@gmail.com>
|
2008-01-01 Thijs Vermeir <thijsvermeir@gmail.com>
|
||||||
|
|
||||||
* tools/gst-plot-timeline.py:
|
* tools/gst-plot-timeline.py:
|
||||||
|
|
|
@ -2,18 +2,22 @@
|
||||||
#
|
#
|
||||||
# this script is in CVS as gstreamer/docs/faq/gst-uninstalled
|
# this script is in CVS as gstreamer/docs/faq/gst-uninstalled
|
||||||
#
|
#
|
||||||
# set up environment to use and develop gstreamer and friends uninstalled
|
# It will set up the environment to use and develop gstreamer and projects
|
||||||
|
# that use gstreamer with an uninstalled CVS checkout of gstreamer and the
|
||||||
|
# plugin modules.
|
||||||
#
|
#
|
||||||
# set up PATH, LD_LIBRARY_PATH, PKG_CONFIG_PATH, GST_PLUGIN_PATH, MANPATH,
|
# It will set up LD_LIBRARY_PATH, DYLD_LIBRARY_PATH, PKG_CONFIG_PATH,
|
||||||
# PYTHONPATH
|
# GST_PLUGIN_PATH, GST_PLUGIN_SYSTEM_PATH, GST_REGISTRY, MANPATH, PYTHONPATH
|
||||||
|
# to prefer the uninstalled versions but also contain the installed ones.
|
||||||
|
# The only exception to this is, that no system installed plugins will be
|
||||||
|
# used but only the uninstalled ones.
|
||||||
#
|
#
|
||||||
# prefer uninstalled versions, but also put installed ones on the path
|
# This script assumes that the relevant modules are checked out one by one
|
||||||
|
# under a given tree specified below in MYGST.
|
||||||
#
|
#
|
||||||
# this script assumes that the relevant modules are checked out one by one
|
# Symlink this script in a directory in your path (for example $HOME/bin). You
|
||||||
# under a given tree specified below in MYGST
|
# must name the symlink gst-something, where something is the subdirectory
|
||||||
#
|
# of MYGST that contains your gstreamer module checkouts.
|
||||||
# symlink this script in a directory in your path (for example $HOME/bin)
|
|
||||||
# to a name that reflects the version of your checkout
|
|
||||||
#
|
#
|
||||||
# e.g.:
|
# e.g.:
|
||||||
# - mkdir $HOME/gst/head
|
# - mkdir $HOME/gst/head
|
||||||
|
@ -21,12 +25,15 @@
|
||||||
# - checkout copies of gstreamer modules in $HOME/gst/head
|
# - checkout copies of gstreamer modules in $HOME/gst/head
|
||||||
# - gst-head
|
# - gst-head
|
||||||
|
|
||||||
# this script is run -i so that PS1 doesn't get cleared
|
# This script is run -i so that PS1 doesn't get cleared
|
||||||
|
|
||||||
# change this variable to a different location depending on where you
|
# Change this variable to the location of your gstreamer CVS checkouts
|
||||||
# store your cvs checkouts
|
|
||||||
MYGST=$HOME/gst
|
MYGST=$HOME/gst
|
||||||
|
|
||||||
|
#
|
||||||
|
# Everything below this line shouldn't be edited!
|
||||||
|
#
|
||||||
|
|
||||||
# extract version from $0
|
# extract version from $0
|
||||||
# if this script is called "gst-head" then version will be "head"
|
# if this script is called "gst-head" then version will be "head"
|
||||||
VERSION=`echo $0 | sed s/.*gst-//g`
|
VERSION=`echo $0 | sed s/.*gst-//g`
|
||||||
|
|
Loading…
Reference in a new issue