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


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


desc
@@


1.1
log
@Add selenium and rdflib.
@
text
@#!/bin/bash

PKG=rdflib-3.1.0

pushd ../SOURCES
if [ ! -f $PKG.tar.gz ]; then
    wget http://pypi.python.org/packages/source/r/rdflib/$PKG.tar.gz
fi
popd


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

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

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