#!/bin/sh

set -x

if [ -z "$1" ]; then
    echo "You must specify the version of the tarball to build."
    echo "E.g. $0 1.042"
    exit 1
fi

cpan2rpm Gtk2-$1.tar.gz --version $1 --buildarch i386
