st-custom/build.sh

16 lines
391 B
Bash
Raw Normal View History

#!/bin/sh
cp -f config.mk Makefile patches.h st-flexipatch/
flexipatch-finalizer/flexipatch-finalizer.sh -r -d st-flexipatch -o st-final
2024-02-28 00:50:41 +01:00
git -C st-flexipatch reset --hard HEAD && git -C st-flexipatch clean -fd
for patch in patches/*.diff; do
2024-04-17 23:17:37 +02:00
patch -d st-final <"$patch"
done
cp -f config.h st-final/
cd st-final || exit 1
2024-04-17 23:17:37 +02:00
if [ "$1" = "-i" ]; then
sudo make install
else
make
fi