mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
21 lines
362 B
Bash
Executable file
21 lines
362 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# SPDX-FileCopyrightText: 2026 live-bootstrap contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
src_get() {
|
|
:
|
|
}
|
|
|
|
src_unpack() {
|
|
dirname=.
|
|
cp -r ../src .
|
|
}
|
|
|
|
src_compile() {
|
|
gcc -m32 -march=i386 -std=c89 -static -o payload-import src/payload-import.c
|
|
}
|
|
|
|
src_install() {
|
|
install -D payload-import "${DESTDIR}${BINDIR}/payload-import"
|
|
}
|