16 lines
413 B
Bash
16 lines
413 B
Bash
termux_step_get_source() {
|
|
: "${TERMUX_PKG_SRCURL:=""}"
|
|
|
|
if [ "${TERMUX_PKG_SRCURL: -4}" == ".git" ]; then
|
|
termux_git_clone_src
|
|
else
|
|
if [ -z "${TERMUX_PKG_SRCURL}" ] || [ "${TERMUX_PKG_SKIP_SRC_EXTRACT-false}" = "true" ] || [ "$TERMUX_PKG_METAPACKAGE" = "true" ]; then
|
|
mkdir -p "$TERMUX_PKG_SRCDIR"
|
|
return
|
|
fi
|
|
termux_download_src_archive
|
|
cd $TERMUX_PKG_TMPDIR
|
|
termux_extract_src_archive
|
|
fi
|
|
}
|