zerok / zerokspot.recipe.distutils
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (3)
- Wiki (1)
- Graphs
-
Tree:
1fa838a
zerokspot.recipe.distutils / README.rst
zerokspot.recipe.distutils
This recipe offers a simple way to install dependencies that are only available as distutils-archives:
[buildout]
parts = part
[part]
recipe = zerokspot.recipe.distutils
urls =
http://domain.com/file.tar.gz
This will install the package into ${buildout:parts-directory}/part/ and make its library components available via ${part:extra-path}.
Options
Additionally provided variables
Disclaimer
Function-wise this recipe is inspired by Kevin Teague's collective.recipe.distutils, but solves some aspects a little bit different. For instance, this recipe uses setup.py's --prefix-argument in order to also support the installation of packages that have a script-component. It also distinguishes between ${part:location} and ${part:extra-path} with the first representing the prefix-directory while the latter pointing to the respective "site-packages"-directory.

