forked from ports/contrib
17 lines
488 B
Plaintext
17 lines
488 B
Plaintext
# Description: Backport of the concurrent.futures package from Python 3.2.
|
|
# URL: http://code.google.com/p/pythonfutures/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Danny Rawlins, crux at romster dot me
|
|
# Depends on: setuptools
|
|
|
|
name=futures
|
|
version=2.2.0
|
|
release=1
|
|
source=(http://pypi.python.org/packages/source/f/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py build
|
|
/usr/bin/python setup.py install --root=$PKG --optimize=1
|
|
}
|