mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
20 lines
480 B
Bash
20 lines
480 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2023 Samuel Tyler <samuel@samuelt.me>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -ex
|
|
|
|
# Build & install
|
|
M2-Mesoplanet --architecture ${ARCH} -f src/checksum-transcriber.c -o ${BINDIR}/checksum-transcriber
|
|
|
|
# Checksums
|
|
if match x${UPDATE_CHECKSUMS} xTrue; then
|
|
sha256sum -o ${pkg}.${ARCH}.checksums \
|
|
/usr/bin/checksum-transcriber
|
|
|
|
cp ${pkg}.${ARCH}.checksums ${SRCDIR}
|
|
else
|
|
sha256sum -c ${pkg}.${ARCH}.checksums
|
|
fi
|