19 lines
491 B
Plaintext
19 lines
491 B
Plaintext
|
# Description: python-pip (easy_install replacement to install pypi python packages)
|
||
|
# URL: http://www.pip-installer.org
|
||
|
# Packager: milisarge
|
||
|
# Depends on: python3 python3-setuptools
|
||
|
name=python3-pip
|
||
|
version=8.0.2
|
||
|
release=1
|
||
|
|
||
|
source=(http://pypi.python.org/packages/source/p/pip/pip-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd pip-$version
|
||
|
python3 setup.py install --prefix=/usr --root=$PKG
|
||
|
|
||
|
mkdir -p $PKG/usr/share/doc/$name-$version
|
||
|
cp -Rf docs/* $PKG/usr/share/doc/$name-$version
|
||
|
}
|
||
|
|