diff options
Diffstat (limited to 'user/efibootmgr/APKBUILD')
-rw-r--r-- | user/efibootmgr/APKBUILD | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/user/efibootmgr/APKBUILD b/user/efibootmgr/APKBUILD index 0cde72c5a..d3e310fb8 100644 --- a/user/efibootmgr/APKBUILD +++ b/user/efibootmgr/APKBUILD @@ -1,26 +1,27 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=efibootmgr -pkgver=16 +pkgver=18 pkgrel=0 pkgdesc="User-space application to modify the Intel EFI Boot Manager" url="https://github.com/rhboot/efibootmgr" -arch="pmmx x86_64 arm64 ia64" +arch="pmmx x86_64 aarch64 armv7" options="!check" # Dangerous. license="GPL-2.0-only" depends="" -makedepends="efivar-dev" +makedepends="efivar-dev popt-dev pkgconf" subpackages="$pkgname-doc" -source="https://github.com/rhboot/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2" +source="https://github.com/rhboot/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2 + fix-efiboot-includes.patch + " build() { - cd "$builddir" - make EFIDIR="Adelie" libdir="/usr/lib" LIBS="intl" + make EFIDIR="Adelie" } package() { - cd "$builddir" - make EFIDIR="Adelie" libdir="/usr/lib" LIBS="intl" DESTDIR="$pkgdir" install + make EFIDIR="Adelie" DESTDIR="$pkgdir" install } -sha512sums="936318c7163c07b716f89be3d830957d9db68ba1b059223f7ea3d9eafe0dbf1c91b9aee096f5aed70955c6052c3b8547295c0a47f17cdf43788259d87d1990b9 efibootmgr-16.tar.bz2" +sha512sums="59112a3da3bad782ae893e1390f5a371474392f9779a2769a9d56335760b611b5330fe57b46e8d858d237786230162a0947261769c02c960549be6c1f6a5f4a6 efibootmgr-18.tar.bz2 +055cdebafce1993a600148d74f61785a7c217d73c9868d542ff7eecca3a0236010495473ecdcd568fbfb7301e7c55ba766d4803089af32d88772451481f83a2b fix-efiboot-includes.patch" |