mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 13:20:08 +02:00
46 lines
867 B
Bash
46 lines
867 B
Bash
SUMMARY="Pure python SSH implementation"
|
|
DESCRIPTION="Paramiko is a module for python 2.2 (or higher) that implements \
|
|
the SSH2 protocol for secure (encrypted and authenticated) connections to \
|
|
remote machines."
|
|
HOMEPAGE="http://www.lag.net/paramiko/"
|
|
COPYRIGHT="2003-2009 Robey Pointer"
|
|
LICENSE="GNU LGPL v2.1"
|
|
REVISION="1"
|
|
SOURCE_URI="https://pypi.python.org/packages/source/p/paramiko/paramiko-1.16.0.tar.gz"
|
|
STATUS_HAIKU="stable"
|
|
CHECKSUM_SHA256="3297ebd3cd072f573772f7c7426939a443c62c458d54bb632ff30fd6ecf96892"
|
|
|
|
ARCHITECTURES="arm ppc x86 x86_gcc2 x86_64"
|
|
|
|
SOURCE_DIR="paramiko-${portVersion}"
|
|
|
|
PROVIDES="
|
|
python_paramiko = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:python
|
|
pycrypto
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:python
|
|
cmd:sed
|
|
"
|
|
|
|
|
|
BUILD()
|
|
{
|
|
python setup.py build
|
|
}
|
|
|
|
|
|
INSTALL()
|
|
{
|
|
python setup.py install --prefix=$prefix
|
|
}
|