source: graphvizplugin/tags/0.11-0.7.5/build.sh

Last change on this file was 3386, checked in by Peter Kropf, 16 years ago

build scripts no longer need the parameter for the environment.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Id HeadURL LastChangedRevision
File size: 482 bytes
Line 
1#! /bin/sh
2
3echo $PATH
4
5ENV=/opt/trac/py25/env0.11
6PORT=9011
7
8export PATH=$ENV/bin:$PATH_RESET
9
10echo "cleaning out old build"
11rm -rf build dist
12python setup.py bdist_egg
13
14echo "cleaning out old installation"
15rm -f $ENV/trac/plugins/graphviz-*.egg
16rm -f $ENV/trac/htdocs/graphviz/*
17
18echo "running tracd on port $PORT"
19cp dist/graphviz-*.egg $ENV/trac/plugins/
20#LD_LIBRARY_PATH=$ENV/lib tracd --port $PORT -b 172.16.6.1 $ENV/trac
21LD_LIBRARY_PATH=$ENV/lib tracd --port $PORT $ENV/trac
Note: See TracBrowser for help on using the repository browser.