2020-02-23 16:24:49 +01:00
|
|
|
TERMUX_SUBPKG_DESCRIPTION="Python bindings for Frida"
|
2020-02-23 21:18:04 +01:00
|
|
|
TERMUX_SUBPKG_INCLUDE="lib/python*"
|
2020-02-23 16:24:49 +01:00
|
|
|
|
2020-02-23 21:35:29 +01:00
|
|
|
termux_step_create_subpkg_debscripts() {
|
2020-12-31 17:08:37 +01:00
|
|
|
_PYTHON_VERSION=$(source $TERMUX_SCRIPTDIR/packages/python/build.sh; echo $_MAJOR_VERSION)
|
2020-02-23 21:35:29 +01:00
|
|
|
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
|
2020-12-31 17:08:37 +01:00
|
|
|
echo "pip${_PYTHON_VERSION} install wcwidth colorama pygments" >> postinst
|
2020-02-23 21:35:29 +01:00
|
|
|
}
|