mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
12 lines
267 B
Plaintext
12 lines
267 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
patch -p1 < efivar.patch
|
||
|
|
||
|
make EXTRA_CFLAGS=-Os EFIDIR=/boot/EFI
|
||
|
|
||
|
install -d "$1/usr/bin/"
|
||
|
install -Dm0755 src/efibootmgr "$1/usr/bin/efibootmgr"
|
||
|
|
||
|
install -d "$1/usr/share/man/man8/"
|
||
|
install -Dm0644 src/efibootmgr.8 "$1/usr/share/man/man8/efibootmgr.8"
|