1
0
Fork 0

encoding changes

This commit is contained in:
acn 2020-12-03 15:52:48 +01:00
parent 6aee0588af
commit 12e2e2c263
21 changed files with 6 additions and 1 deletions

View File

@ -2,4 +2,4 @@ N;2048
F;2048.COM
S;2048.ASM
R;README.md
D;2048 - 2048 game for CP/M (VT100/ANSI color)
D;2048 - A 2048 game for CP/M (VT100/ANSI color)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -35,8 +35,10 @@ for pkg in ${DIRS}; do
if [ "${DATA[0]}" = "R" ]; then
if [ "${DATA[2]}" = "" ]; then
pandoc -f markdown -t plain -s ${pkg}/${DATA[1]} -o ${TMPDIR}/${NAME}.DOC
unix2dos ${TMPDIR}/${NAME}.DOC
else
pandoc -f markdown -t plain -s ${pkg}/${DATA[1]} -o ${TMPDIR}/${DATA[2]}
unix2dos ${TMPDIR}/${DATA[2]}
fi
fi
@ -44,6 +46,9 @@ for pkg in ${DIRS}; do
[ "${DATA[0]}" = "D" ] && echo "${DATA[1]}" >> ${TMPDIR}/FILE_ID.DIZ
done < ${pkg}/.package
unix2dos ${TMPDIR}/FILE_ID.DIZ
zip -k -j ${TARGET}/${NAME}.ZIP ${TMPDIR}/*
rm -R ${TMPDIR}
done