mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 21:30:08 +02:00
43 lines
763 B
Bash
43 lines
763 B
Bash
SUMMARY="Pure python ECDSA implementation"
|
|
DESCRIPTION="ECDSA is a module for python 2.6 (or higher) that implements \
|
|
the ECDSA cryptographic signature library."
|
|
HOMEPAGE="https://github.com/warner/python-ecdsa"
|
|
COPYRIGHT="2010 Brian Warner"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="https://pypi.python.org/packages/source/e/ecdsa/ecdsa-0.13.tar.gz"
|
|
CHECKSUM_SHA256="64cf1ee26d1cde3c73c6d7d107f835fed7c6a2904aef9eac223d57ad800c43fa"
|
|
|
|
ARCHITECTURES="arm ppc x86 x86_gcc2 x86_64"
|
|
|
|
SOURCE_DIR="ecdsa-${portVersion}"
|
|
|
|
PROVIDES="
|
|
python_ecdsa = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:python
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:python
|
|
cmd:sed
|
|
"
|
|
|
|
|
|
BUILD()
|
|
{
|
|
python setup.py build
|
|
}
|
|
|
|
|
|
INSTALL()
|
|
{
|
|
python setup.py install --prefix=$prefix
|
|
}
|