blob: c10e2e3ddcffda630120593769fb656f40733d82 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Intel Aptio V UEFI Firmware Integrator Tools for Intel NUC products"
HOMEPAGE="https://www.intel.com/content/www/us/en/download/19504/intel-aptio-v-uefi-firmware-integrator-tools.html"
SRC_URI="https://downloadmirror.intel.com/646815/iFlashV.zip -> ${P}.zip"
LICENSE="iASL"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="app-arch/unzip"
DOCS="iFlashV-User-Guide.pdf"
QA_PRESTRIPPED="usr/sbin/${PN}"
S="${WORKDIR}"
src_install () {
newsbin "${S}/${PN}-Linux-${PV}/iFlashVLnx64" "${PN}"
default
}
|