blob: bc899f763da7230deef33d63f500681bd1e6cf30 (
plain)
1 # Description: Manage Python virtual environments
2 # URL: https://github.com/dephell/dephell_venvs
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-dephell-pythons
5
6 name=python3-dephell-venvs
7 version=0.1.18
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/d/dephell_venvs/dephell_venvs-$version.tar.gz)
10
11 build() {
12 cd dephell_venvs-$version
13 find . -name \*.pyc -delete
14 /usr/bin/python3 setup.py build
15 /usr/bin/python3 setup.py install --prefix=/usr \
16 --root=$PKG \
17 -O1 \
18 --skip-build
19 }
|