head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2010.09.27.06.29.13;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Upgrade to latest versions of PyQt and SIP.
Look at guiqwt and guidata.
@
text
@#!/bin/bash

PKG=guidata-1.2.1

pushd ../SOURCES
if [ ! -f $PKG.zip ]; then
    wget $SF/guidata/$PKG.zip
fi
popd

function version() {
    rm -rf $PKG
    unzip ../SOURCES/$PKG.zip
    pushd $PKG
    $1 setup.py install
    popd # $PKG
}

pushd ../BUILD
version python2.5
version python2.6
version python2.7
#version python3.1
popd # ../BUILD

# Local Variables: ***
# mode: sh ***
# End: ***
@
