Move simple-patch into a subdirectory

Add a checksum as well.

Closes #323
This commit is contained in:
fosslinux 2023-11-28 14:18:34 +11:00
parent 341a4681f5
commit ddd8c8d380
4 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,20 @@
#!/bin/sh
# SPDX-FileCopyrightText: 2023 fosslinux <fosslinux@aussies.space>
#
# SPDX-License-Identifier: GPL-3.0-or-later
set -ex
# Build & install
M2-Mesoplanet --architecture ${ARCH} -f src/simple-patch.c -o ${BINDIR}/simple-patch
# Checksums
if match x${UPDATE_CHECKSUMS} xTrue; then
sha256sum -o ${pkg}.checksums \
/usr/bin/simple-patch
cp ${pkg}.checksums ${SRCDIR}
else
sha256sum -c ${pkg}.${ARCH}.checksums
fi