contrib/virtualenv-clone/Pkgfile

18 lines
514 B
Plaintext
Raw Normal View History

2016-05-14 21:34:31 +02:00
# Description: A script to clone virtualenvs
2020-06-01 17:45:48 +02:00
# URL: https://github.com/edwardgeorge/virtualenv-clone
2016-05-14 21:34:31 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Depends on: python3-setuptools
name=virtualenv-clone
version=0.5.4
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)
build() {
cd $name-$version
/usr/bin/python3 setup.py install --root=$PKG
2018-10-27 21:56:25 +02:00
find $PKG -name '*.pyc' -delete
}