# Maintainer: David Runge # Contributor: Tobias Powalowski # Contributor: Murtuza Akhtari # Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) (gemmaeiil) (ddoott) (ccoomm)> # upstream only signs commits _commit=e067160ecef8208e1944002e5d50b275733211fb # 17 pkgname=efibootmgr pkgver=17 pkgrel=2 pkgdesc="Linux user-space application to modify the EFI Boot Manager" arch=('x86_64') url="https://github.com/rhboot/efibootmgr" license=('GPL2') depends=('glibc' 'popt') makedepends=('efivar' 'git') source=("${pkgname}::git+https://github.com/rhboot/efibootmgr#tag=${pkgver}?signed") sha512sums=('SKIP') validpgpkeys=('B00B48BC731AA8840FED9FB0EED266B70F4FEF10') # Peter Jones prepare() { mv -v "${pkgname}" "${pkgname}-${pkgver}" cd "${pkgname}-${pkgver}" # removing hotfix function declaration: # https://github.com/rhboot/efibootmgr/issues/128 sed -e '/extern int efi_set_verbose/d' -i "src/${pkgname}.c" } build() { cd "${pkgname}-${pkgver}" make libdir='/usr/lib' sbindir='/usr/bin' EFIDIR='arch' } package() { depends+=('libefiboot.so' 'libefivar.so') cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" \ libdir='/usr/lib' \ sbindir='/usr/bin' \ EFIDIR='arch' \ install install -vDm 644 {AUTHORS,README,README.md,TODO} \ -t "${pkgdir}/usr/share/doc/${pkgname}" }