From: rhatto Date: Wed, 25 Jul 2007 21:12:01 +0000 (+0000) Subject: setuptools: small fixes X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=3b24486d153dc4cf716bb5675b913f27985cd2c9;p=slackbuilds.git setuptools: small fixes git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1301 370017ae-e619-0410-ac65-c121f96126d4 --- diff --git a/dev/python/setuptools/setuptools.build b/dev/python/setuptools/setuptools.build index 2cde1156..add08d5d 100755 --- a/dev/python/setuptools/setuptools.build +++ b/dev/python/setuptools/setuptools.build @@ -39,8 +39,8 @@ TMP=${TMP:=/tmp} RTOOL="wget" PACKAGE_EXT="gz" -SRC="$PACKAGE-$VERSION.tar.$PACKAGE_EXT" -URL="http://peak.telecommunity.com/dist/ez_setup.py" +SRC="ez_setup.py" +URL="http://peak.telecommunity.com/dist/$SRC" if [ "$ARCH" == "x86_64" ]; then LIBDIR=/usr/lib64 @@ -72,8 +72,7 @@ fi cd $TMP -cd $PACKAGE-$VERSION -mv $SRC_DIR/ez_setup.py . +mv $SRC_DIR/$SRC . python ez_setup.py install || exit $ERROR_INSTALL CWD="`pwd`"