new: more package migrations
This commit is contained in:
3
src/efibootmgr/.gitignore
vendored
Normal file
3
src/efibootmgr/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/efibootmgr/changes.md
Normal file
2
src/efibootmgr/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 18
|
||||
First version
|
22
src/efibootmgr/pkg.sh
Normal file
22
src/efibootmgr/pkg.sh
Normal file
@ -0,0 +1,22 @@
|
||||
# general info
|
||||
NAME="efibootmgr"
|
||||
DESC="Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager"
|
||||
VERSION="18"
|
||||
|
||||
# required files
|
||||
FILES=("https://github.com/rhboot/efibootmgr/archive/18/efibootmgr-${VERSION}.tar.gz")
|
||||
HASHES=("e170147da25e1d5f72721ffc46fe4e06")
|
||||
|
||||
# install and build depends
|
||||
DEPENDS=("efivar" "glibc" "popt")
|
||||
BUILD=()
|
||||
|
||||
build(){
|
||||
tar xf "${NAME}-${VERSION}.tar.gz"
|
||||
cd "${NAME}-${VERSION}"
|
||||
|
||||
make EFIDIR=LFS EFI_LOADER=grubx64.efi
|
||||
make DESTDIR="${ROOTDIR}" install EFIDIR=LFS
|
||||
|
||||
cd .. && rm -r "${NAME}-${VERSION}"
|
||||
}
|
Reference in New Issue
Block a user