mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
11 lines
224 B
Bash
Executable File
11 lines
224 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
make CC="${CC:-cc}" EFIDIR=/boot/EFI efibootmgr
|
|
|
|
mkdir -p \
|
|
"$1/usr/bin" \
|
|
"$1/usr/share/man/man8"
|
|
|
|
cp -f src/efibootmgr "$1/usr/bin"
|
|
cp -f src/efibootmgr.8.in "$1/usr/share/man/man8/efibootmgr.8"
|