frida-tools: fix typo in postinst script

This commit is contained in:
Henrik Grimler 2020-03-05 18:49:37 +01:00 committed by Yaksh Bariya
parent d57f6eecd0
commit 020d570487
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91"
_MAJOR_VERSION=12
_MINOR_VERSION=8
_MICRO_VERSION=13
TERMUX_PKG_REVISION=1
TERMUX_PKG_VERSION=${_MAJOR_VERSION}.${_MINOR_VERSION}.${_MICRO_VERSION}
TERMUX_PKG_SRCURL=https://github.com/frida/frida.git
TERMUX_PKG_DEPENDS="libiconv, python"

View File

@ -11,5 +11,5 @@ bin/frida-trace
termux_step_create_subpkg_debscripts() {
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
echo "pip3.8 prompt_toolkit colorama pygments" >> postinst
echo "pip3.8 install prompt_toolkit colorama pygments" >> postinst
}