gforth: Fix alignment of magic in `*.fi`

This commit is contained in:
Tee KOBAYASHI 2023-01-19 04:20:43 +09:00 committed by xtkoba
parent acec7e6460
commit 88c83a821d
1 changed files with 27 additions and 0 deletions

View File

@ -3,6 +3,7 @@ TERMUX_PKG_DESCRIPTION="The Forth implementation of the GNU project"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.7.3
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://ftp.gnu.org/gnu/gforth/gforth-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=2f62f2233bf022c23d01c920b1556aa13eab168e3236b13352ac5e9f18542bb0
TERMUX_PKG_BUILD_IN_SRC=true
@ -41,3 +42,29 @@ termux_step_post_configure() {
sed -i -e 's:\.\(/gforth-ditc\):'$TERMUX_PKG_HOSTBUILD_DIR'\1:g' \
Makefile
}
termux_step_post_massage() {
# Alignment of magic can be broken by shebang fix:
# https://github.com/termux/termux-packages/issues/14648
local f
for f in $(find ./lib/gforth ./share/gforth -type f -name '*.fi'); do
if [ $(head -c 2 "${f}") != '#!' ]; then
continue
fi
local c1=$(head -n 1 "${f}" | wc -c)
local c2=$(tail -c +$((c1+1)) "${f}" | head -c 16 | \
sed -n 's/Gforth3.*//p' | wc -c)
local p=$(( (8-(c1+c2)%8)%8 ))
if [ ${p} -ne 0 ]; then
echo "Fixing alignment of magic in ${f}"
head -c ${c1} "${f}" > "${f}".new
local i
for i in $(seq ${p}); do
echo -n " " >> "${f}".new
done
tail -c +$((c1+1)) "${f}" >> "${f}".new
rm -f "${f}"
mv "${f}".new "${f}"
fi
done
}