#Packager: George Vlahavas <vlahavas~at~gmail~dot~com>

pkgname=pip
pkgver=6.1.1
pkgrel=1gv
source=(http://pypi.python.org/packages/source/p/pip/pip-$pkgver.tar.gz)
docs=("authors.txt" "license.txt" "changes.txt" "project.txt")
url=http://www.pip-installer.org

slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"python-pip (easy_install replacement to install pypi python packages)"
"pip is a tool for installing and managing Python packages, such as "
"those found in the Python Package Index."
"It’s a replacement for easy_install."
)

build() {
	cd $startdir/src/pip-$pkgver
	python setup.py install --prefix=/usr --root=$startdir/pkg
	mkdir -p $startdir/pkg/usr/doc/$pkgname-$pkgver
	cp -a docs/* $startdir/pkg/usr/doc/$pkgname-$pkgver 
}