blob: 3fc52b6e87743d377bea320d04de3d7a3d268afe (
plain)
1 # Description: Virtual Python Environment builder
2 # URL: http://www.virtualenv.org/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: James Mills, prologic at shortcircuit dot net dot au
5 # Depends on: python-setuptools
6
7 name=virtualenv
8 version=15.1.0
9 release=1
10 source=(https://pypi.io/packages/source/v/virtualenv/virtualenv-${version}.tar.gz)
11
12 build() {
13 cd $name-$version
14 /usr/bin/python setup.py install --root=$PKG
15 }
|