diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2007-07-25 21:12:01 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2007-07-25 21:12:01 +0000 |
commit | 3b24486d153dc4cf716bb5675b913f27985cd2c9 (patch) | |
tree | 83acd470559ea6d02298e9b6bfe585cd29cea4e9 /dev/python | |
parent | c8c45473b4e4dc1f7f9deac9f1ff79b8f9ae544f (diff) | |
download | slackbuilds-3b24486d153dc4cf716bb5675b913f27985cd2c9.tar.gz slackbuilds-3b24486d153dc4cf716bb5675b913f27985cd2c9.tar.bz2 |
setuptools: small fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1301 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'dev/python')
-rwxr-xr-x | dev/python/setuptools/setuptools.build | 7 |
1 files changed, 3 insertions, 4 deletions
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`" |