From 53f7a5b5e26504ccb769ff471d5ba66a1cdf74e4 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Tue, 26 May 2020 18:32:44 +0000 Subject: [PATCH] removed extra/gnu-efi-libs --- extra/gnu-efi-libs/PKGBUILD | 40 ------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 extra/gnu-efi-libs/PKGBUILD diff --git a/extra/gnu-efi-libs/PKGBUILD b/extra/gnu-efi-libs/PKGBUILD deleted file mode 100644 index 8d38a93b6..000000000 --- a/extra/gnu-efi-libs/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# Maintainer: Tobias Powalowski -# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) (gemmaeiil) (ddoott) (ccoomm)> -# Contributor: Alessio 'mOLOk' Bolognino - -# ALARM: Kevin Mihelich -# - define aarch64 - -buildarch=8 - -[[ "${CARCH}" == "x86_64" ]] && _EFI_ARCH="x86_64" -[[ "${CARCH}" == "i686" ]] && _EFI_ARCH="ia32" -[[ "${CARCH}" == "aarch64" ]] && _EFI_ARCH="aarch64" - -_pkgver=3.0.11 -pkgname="gnu-efi-libs" -pkgver="${_pkgver}" -pkgrel=2 -pkgdesc="Library for building UEFI Applications using GNU toolchain" -url="https://sourceforge.net/projects/gnu-efi/" -license=('GPL') -arch=('x86_64') -options=('!strip' '!makeflags' '!buildflags') -makedepends=('pciutils') -source=("https://download.sourceforge.net/gnu-efi/gnu-efi-${pkgver}.tar.bz2") -md5sums=('21148bbcccec385a9bfdf5f678959577') - -build() { - cd "${srcdir}/gnu-efi-${_pkgver}/" - - make lib gnuefi inc apps -} - -package() { - cd "${srcdir}/gnu-efi-${_pkgver}/" - - make INSTALLROOT="${pkgdir}" PREFIX="/usr" LIBDIR="/usr/lib" install - - install -d "${pkgdir}/usr/share/gnu-efi/apps/${_EFI_ARCH}/" - install -D -m0644 "${srcdir}/gnu-efi-${_pkgver}/${_EFI_ARCH}/apps"/*.efi "${pkgdir}/usr/share/gnu-efi/apps/${_EFI_ARCH}/" -}