2016-05-14 21:34:31 +02:00
|
|
|
# Description: A script to clone virtualenvs
|
|
|
|
# URL: http://github.com/edwardgeorge/virtualenv-clone
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
2017-02-05 16:32:37 +11:00
|
|
|
# Depends on: python-setuptools
|
2012-12-16 18:41:15 +02:00
|
|
|
|
|
|
|
name=virtualenv-clone
|
2018-10-27 21:56:25 +02:00
|
|
|
version=0.3.0
|
2016-05-14 21:34:31 +02:00
|
|
|
release=1
|
2018-10-27 21:56:25 +02:00
|
|
|
source=(https://pypi.python.org/packages/source/v/$name/$name-$version.tar.gz)
|
2012-12-16 18:41:15 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2014-02-16 23:13:39 +10:00
|
|
|
/usr/bin/python setup.py install --root=$PKG
|
2018-10-27 21:56:25 +02:00
|
|
|
|
|
|
|
find $PKG -name '*.pyc' -delete
|
2012-12-16 18:41:15 +02:00
|
|
|
}
|