mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
14 lines
315 B
Bash
Executable File
14 lines
315 B
Bash
Executable File
#!/bin/sh -ef
|
|
|
|
mkdir -p "$1/usr/bin"
|
|
|
|
cp -R etc "$1"
|
|
cp -R lib "$1/usr/lib"
|
|
|
|
# Disable warning as CFLAGS must work this way.
|
|
# shellcheck disable=2086
|
|
for bin in kpow kall; do
|
|
"${CC:-cc}" -o "$1/usr/bin/$bin" "bin/$bin.c" $CFLAGS -static
|
|
install -Dm644 "bin/$bin.c" "$1/usr/share/doc/kiss/init/$bin.c"
|
|
done
|