blob: b689c2319d6d9fcc7a3a008c228ee360946b0b06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P="iwlwifi-1000-ucode-${PV}"
DESCRIPTION="Intel (R) Wireless WiFi Link 1000BGN ucode"
HOMEPAGE="https://wireless.wiki.kernel.org/en/users/Drivers/iwlwifi"
SRC_URI="https://wireless.wiki.kernel.org/_media/en/users/drivers/${MY_P}.tgz"
S="${WORKDIR}/${MY_P}"
LICENSE="ipw3945"
SLOT="0"
KEYWORDS="amd64 x86"
src_install() {
insinto /lib/firmware
doins iwlwifi-1000-5.ucode
dodoc README.iwlwifi-1000-ucode
}
|