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