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


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


desc
@@


1.1
log
@Removed obsolete files.
Added build-xlwt.
Added more python versions to build-jinja2 and build-scipy-svn.
@
text
@#!/bin/bash

PKG=xlwt-0.7.2

pushd ../SOURCES
if [ ! -f $PKG.tar.gz ]; then
    wget http://pypi.python.org/packages/source/x/xlwt/$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
popd # ../BUILD

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