17 lines
497 B
Plaintext
17 lines
497 B
Plaintext
# Description: Python HTTP for Humans.
|
|
# URL: http://python-requests.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Danny Rawlins, crux at romster dot me
|
|
# Depends on: setuptools
|
|
|
|
name=requests
|
|
version=2.12.3
|
|
release=1
|
|
source=(https://pypi.python.org/packages/d9/03/155b3e67fe35fe5b6f4227a8d9e96a14fda828b18199800d161bcefc1359/requests-2.12.3.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py build
|
|
/usr/bin/python setup.py install --prefix=/usr --root=$PKG
|
|
}
|