termux_step_install_license: Handle spaces in license name

This commit is contained in:
Henrik Grimler 2019-05-11 06:42:31 +02:00 committed by Leonid Pliushch
parent b9db6b4de8
commit 3bfb8b45b9
1 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@ termux_step_install_license() {
if [ ! "${TERMUX_PKG_LICENSE_FILE}" = "" ]; then
for LICENSE in $TERMUX_PKG_LICENSE_FILE; do
if [ ! -f "$TERMUX_PKG_SRCDIR/$LICENSE" ]; then termux_error_exit "$TERMUX_PKG_SRCDIR/$LICENSE does not exist"; fi
cp ${TERMUX_PKG_SRCDIR}/${LICENSE} ${TERMUX_PREFIX}/share/${TERMUX_PKG_NAME}
cp -f ${TERMUX_PKG_SRCDIR}/${LICENSE} ${TERMUX_PREFIX}/share/${TERMUX_PKG_NAME}
done
else
local COUNTER=0
for LICENSE in $(echo $TERMUX_PKG_LICENSE | sed 's/,/ /g'); do
for LICENSE in "$(echo $TERMUX_PKG_LICENSE | sed 's/,/ /g')"; do
if [ -f "$TERMUX_SCRIPTDIR/packages/termux-licenses/LICENSES/${LICENSE}.txt" ]; then
if [[ $COUNTER > 0 ]]; then
ln -sf "../LICENSES/${LICENSE}.txt" "$TERMUX_PREFIX/share/$TERMUX_PKG_NAME/LICENSE.${COUNTER}"
@ -17,7 +17,7 @@ termux_step_install_license() {
fi
COUNTER=$((COUNTER + 1))
done
if [ ! -f "$TERMUX_PREFIX/share/$TERMUX_PKG_NAME/LICENSE*" ]; then
if [ ! -f $TERMUX_PREFIX/share/$TERMUX_PKG_NAME/LICENSE* ] && [ ! -L $TERMUX_PREFIX/share/$TERMUX_PKG_NAME/LICENSE* ]; then
termux_error_exit "No LICENSE file was installed for $TERMUX_PKG_NAME"
fi
fi