efibootmgr: updated URL

This commit is contained in:
Tim Biermann 2023-05-28 10:25:39 +02:00
parent 1e27f6becf
commit 160f199b17
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 7 additions and 4 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/S4KFJg7Hg3qD1DodlhPDr1IgS3J7LUlvPdmBDFfdOckAv3Ejj3Egjnj29dPrFcDjtKP47s8ITtHRVmHTKkonAQ=
SHA256 (Pkgfile) = 65162514aa480133f7d91859f2ee4fb303f88ed949d60b42c001fb74ce3acf45
RWSE3ohX2g5d/fAJPAvncvz4pCBXg1a31D8FVKTapf1PxCGDIl2AT3eMT/m9IRSvVxSTxm661TQWDi/YAUWyZcZTIYSTZdEngQ8=
SHA256 (Pkgfile) = 25cad8463d2f1cb4824845d2f72a3901302dd70ef2bafbecfa51aae7b726e7f7
SHA256 (.footprint) = e34f18fd1083f800387ab49d04767d3d41735415249dcd80b13acf5c78108282
SHA256 (efibootmgr-18.tar.gz) = 442867d12f8525034a404fc8af3036dba8e1fc970998af2486c3b940dfad0874

View File

@ -1,5 +1,5 @@
# Description: manipulate efi boot managers
# URL: https://linux.dell.com/efibootmgr/
# URL: https://github.com/rhboot/efibootmgr
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: efivar
@ -9,10 +9,13 @@ release=1
source=(https://github.com/rhboot/efibootmgr/archive/$version/$name-$version.tar.gz)
build() {
export CFLAGS="${CFLAGS} -Wno-error=pointer-sign"
cd $name-$version
export CFLAGS="${CFLAGS} -Wno-error=pointer-sign"
sed -e '/extern int efi_set_verbose/d' -i src/efibootmgr.c
EFIDIR=/boot/efi make
install -D src/efibootmgr $PKG/usr/sbin/efibootmgr
install -D src/efibootmgr.8 $PKG/usr/share/man/man8/efibootmgr.8
}