Skip to content
Snippets Groups Projects
Commit 7f2776a0 authored by edgrif's avatar edgrif
Browse files

replaced by new version.

parent 5a75af05
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
File deleted
This diff is collapsed.
File deleted
This diff is collapsed.
File deleted
#!/bin/sh
############################################################
#
# script to untar and patch libfoocanvas for us.
# Set the following:
FOOCANVAS_VERSION=20070831
#
#
############################################################
PACKAGE=libfoocanvas-${FOOCANVAS_VERSION}
THISSCRIPT=`basename $0`
SUPPORTDIR=`dirname $0` # directory we can cd to
CALLEDDIR=`pwd`
cd $SUPPORTDIR
SUPPORTDIR=`pwd` # and find the actual path
if [ ! -z $WORKSPACE ]; then
CALLEDDIR=$WORKSPACE
fi
cd $CALLEDDIR
tar -zxf $SUPPORTDIR/${PACKAGE}.tar.gz
cd ${PACKAGE}/libfoocanvas
patch -p0 -u < $SUPPORTDIR/${PACKAGE}.patch
echo "run ./configure, make, make install in '$CALLEDDIR/$PACKAGE'"
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment