aboutsummaryrefslogblamecommitdiff
path: root/devel/py-grouch/pkg-req
blob: 49ee2f57973ef04f53611ae1cb120d622c8e9ad0 (plain) (tree)
1
2
3
4
5
6
7





                                                     
                                                                           









                                                                      
#!/bin/sh

PATH=$PATH:/usr/local/bin

if [ "x$1" = "xINSTALL" -o "x$2" = "xINSTALL" ]; then
  PYTHON_GT=`python -c 'import string, sys; \
                        print string.split(sys.version)[0] >= "2.0" and 1'`
  if [ "x${PYTHON_GT}" = "x1" ]; then
    exit 0
  else
    echo "-----------------------------------------------------------"
    echo "Grouch requires Python version 2.0 or greater -            "
    echo "  please update your Python installation before proceeding."
    echo "-----------------------------------------------------------"
    exit 1
  fi
fi