mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 13:20:08 +02:00
49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
SUMMARY="Download, build, install, upgrade, and uninstall Python packages"
|
|
DESCRIPTION="EasyInstall (easy_install) gives you a quick and painless way \
|
|
to install packages remotely by connecting to the cheeseshop or even other \
|
|
websites via HTTP. It is somewhat analogous to the CPAN and PEAR tools for \
|
|
Perl and PHP, respectively."
|
|
HOMEPAGE="https://pypi.python.org/pypi/setuptools"
|
|
COPYRIGHT="2006-2014 Python Packaging Authority"
|
|
LICENSE="Python"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/pypa/setuptools/archive/v$portVersion.tar.gz"
|
|
SOURCE_FILENAME="setuptools-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="90a40d54d21d4cfe55ae2c3597ed3f2a63d9e8fe768f03ff16f2a58ed97bcc32"
|
|
SOURCE_DIR="setuptools-$portVersion"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
python_setuptools = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:python2
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:python2
|
|
cmd:sed
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
$portPackageLinksDir/cmd~python2/bin/python2 setup.py build
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
# GENERIC: all python_setuptools-based installs need this
|
|
pythonVersion=$(python2 --version 2>&1 | sed 's/Python //' | head -c3)
|
|
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
|
|
export PYTHONPATH=$installLocation:$PYTHONPATH
|
|
mkdir -p $installLocation
|
|
|
|
$portPackageLinksDir/cmd~python2/bin/python2 setup.py install \
|
|
--prefix=$prefix
|
|
}
|