diff options
author | James Mills <prologic@daisy.(none)> | 2006-11-20 07:26:53 +1000 |
---|---|---|
committer | James Mills <prologic@daisy.(none)> | 2006-11-20 07:26:53 +1000 |
commit | 9e696ec09095446172c1455e1e5784dc540ddf51 (patch) | |
tree | 6a9f88478d5837a960f940fce7e5373a0fd5bd70 /setuptools | |
parent | 9318e05d84e946541f81627a18e25c0deb891e34 (diff) | |
download | contrib-9e696ec09095446172c1455e1e5784dc540ddf51.tar.gz contrib-9e696ec09095446172c1455e1e5784dc540ddf51.tar.xz |
Pkgfile cleanup; s/\t/ /g
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/Pkgfile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/setuptools/Pkgfile b/setuptools/Pkgfile index 7db20b258..82f0f187c 100644 --- a/setuptools/Pkgfile +++ b/setuptools/Pkgfile @@ -1,9 +1,9 @@ -# Description: A collection of enhancements to the Python distutils. -# URL: http://peak.telecommunity.com/DevCenter/setuptools -# Maintainer: James Mills prologic at shortcircuit dot net dot au -# Packager: James Mills prologic at shortcircuit dot net dot au +# Description: A collection of enhancements to the Python distutils. +# URL: http://peak.telecommunity.com/DevCenter/setuptools +# Maintainer: James Mills prologic at shortcircuit dot net dot au +# Packager: James Mills prologic at shortcircuit dot net dot au # -# Depends on: python +# Depends on: python name=setuptools version=0.6c3 @@ -13,8 +13,8 @@ source=(http://cheeseshop.python.org/packages/source/s/$name/$name-$version.tar. PYTHONVERSION=`python -c "import sys; print \"%s.%s\" % (sys.version_info[0], sys.version_info[1]);"` build() { - cd $name-$version - python setup.py install --root=$PKG - echo "/usr/lib/python$PYTHONVERSION/site-packages/$name-$version-py$PYTHONVERSION.egg" > $PKG/usr/lib/python$PYTHONVERSION/site-packages/setuptools.pth - chown -R root:root $PKG + cd $name-$version + python setup.py install --root=$PKG + echo "/usr/lib/python$PYTHONVERSION/site-packages/$name-$version-py$PYTHONVERSION.egg" > $PKG/usr/lib/python$PYTHONVERSION/site-packages/setuptools.pth + chown -R root:root $PKG } |