Blob Blame History Raw
#! /bin/sh

version=$1

[ -z $version ] && exit 1

dir=matplotlib-${version}
file=matplotlib-${version}.tar.gz
result=matplotlib-${version}-without-gpc.tar.xz

wget -vc http://downloads.sourceforge.net/matplotlib/$file

rm -rf matplotlib-${version}
tar xzf $file

rm matplotlib-${version}/agg24/include/agg_conv_gpc.h

rm -f $result
tar cJf $result $dir