[arch-commits] Commit in efitools/trunk (PKGBUILD)

Tobias Powalowski tpowa at archlinux.org
Sat May 14 13:42:43 UTC 2016


    Date: Saturday, May 14, 2016 @ 15:42:42
  Author: tpowa
Revision: 267976

upgpkg: efitools 1.7.0-2

fix #49314 building of Preloader.efi on x86_64

Modified:
  efitools/trunk/PKGBUILD

----------+
 PKGBUILD |   12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2016-05-14 13:34:38 UTC (rev 267975)
+++ PKGBUILD	2016-05-14 13:42:42 UTC (rev 267976)
@@ -5,7 +5,7 @@
 
 pkgname="efitools"
 pkgver="1.7.0"
-pkgrel="1"
+pkgrel="2"
 pkgdesc="Tools for manipulating UEFI secure boot platforms"
 url="http://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git"
 arch=('x86_64' 'i686')
@@ -14,10 +14,18 @@
 options=('!strip' '!makeflags')
 makedepends=('gnu-efi-libs' 'help2man' 'sbsigntools' 'perl-file-slurp' 'git')
 depends=('openssl')
-source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/jejb/$pkgname.git#tag=v${pkgver}")
+#source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/jejb/$pkgname.git#tag=v${pkgver}")
+source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/jejb/$pkgname.git#commit=791e4639ee837f70c8d5e1190e01dc3441d4a401")
 
+pkgver() {
+	cd "${pkgname}"
+	echo "$(git describe --tags)" | sed -e 's|efitools-||g' -e 's|-|\.|g'
+}
+
 build() {
 	cd "${pkgname}"
+        # fix PreLoader.efi building on x86_64 #49314
+        export ARCH="${CARCH}"
 	make
 }
 



More information about the arch-commits mailing list