#!/bin/sh

if [ "$1" = "--version" ]
then
  echo "3.3.2"
elif [ "$1" = "--ldflags" ]
then
  echo "-L/home/parallels/vpview/fletch-bin/install/lib -lgeos"
elif [ "$1" = "--includes" ]
then
  echo "/home/parallels/vpview/fletch-bin/install/include"
elif [ "$1" = "--cflags" ]
then
  echo "-I/home/parallels/vpview/fletch-bin/install/include"
fi

