98ed902d7b
--HG-- extra : rebase_source : 358779f05c06f08a5d5543c7a0fc3bf198354a36
17 lines
449 B
Plaintext
17 lines
449 B
Plaintext
# Description: A tool for installing and managing Python packages
|
|
# URL: http://www.pip-installer.org/
|
|
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
|
|
#
|
|
# Depends on: setuptools
|
|
|
|
name=pip
|
|
version=1.5.4
|
|
release=1
|
|
source=(http://pypi.python.org/packages/source/p/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py install --prefix=/usr --root=$PKG
|
|
chown -R root:root $PKG
|
|
}
|