You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
269 B
8 lines
269 B
6 years ago
|
termux_step_finish_build() {
|
||
|
echo "termux - build of '$TERMUX_PKG_NAME' done"
|
||
|
test -t 1 && printf "\033]0;%s - DONE\007" "$TERMUX_PKG_NAME"
|
||
|
mkdir -p /data/data/.built-packages
|
||
|
echo "$TERMUX_PKG_FULLVERSION" > "/data/data/.built-packages/$TERMUX_PKG_NAME"
|
||
|
exit 0
|
||
|
}
|