Files
Arch-R/packages/python/security/pycryptodome/package.mk
Ian Leonard d8854ae179 pycryptodome: update to 3.9.8
Download location moved so I don't have to decipher the pythonhosted
download location. The GitHub url is the official home of the code
per their homepage.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2020-07-14 17:09:26 +00:00

40 lines
1.3 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="pycryptodome"
PKG_VERSION="3.9.8"
PKG_SHA256="d20cf8a4355a21e8dfd33372e7fab22af91d81cbcb48f413b4052820a631e2dd"
PKG_LICENSE="BSD"
PKG_SITE="https://pypi.org/project/pycryptodome"
PKG_URL="https://github.com/Legrandin/${PKG_NAME}/archive/v${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain Python3 distutilscross:host"
PKG_LONGDESC="PyCryptodome is a self-contained Python package of low-level cryptographic primitives."
PKG_TOOLCHAIN="manual"
pre_configure_target() {
cd $PKG_BUILD
rm -rf .$TARGET_NAME
export PYTHONXCPREFIX="$SYSROOT_PREFIX/usr"
export LDSHARED="$CC -shared"
}
make_target() {
python3 setup.py build --cross-compile
}
makeinstall_target() {
python3 setup.py install --root=$INSTALL --prefix=/usr
# Remove SelfTest bloat
find $INSTALL -type d -name SelfTest -exec rm -fr "{}" \; 2>/dev/null || true
find $INSTALL -name SOURCES.txt -exec sed -i "/\/SelfTest\//d;" "{}" \;
# Create Cryptodome as an alternative namespace to Crypto (Kodi addons may use either)
ln -sf /usr/lib/$PKG_PYTHON_VERSION/site-packages/Crypto $INSTALL/usr/lib/$PKG_PYTHON_VERSION/site-packages/Cryptodome
}
post_makeinstall_target() {
python_remove_source
}