blob: 7cdf02f656b7cba26e5f2262a8b85fe0fc27d175 (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="bladeRF FX3 firmware images"
HOMEPAGE="http://nuand.com/fx3.php"
#firmware is open source, but uses a proprietary toolchain to build
#automated builds from git are available, but likely unneeded
#http://hoopycat.com/bladerf_builds/
SRC_URI="http://nuand.com/fx3/bladeRF_fw_v${PV}.img"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S="${DISTDIR}"
src_unpack() {
true
}
src_install() {
insinto /usr/share/Nuand/bladeRF/
doins bladeRF_fw_v${PV}.img
}
pkg_postinst() {
elog "Please remember you have to actually flash this onto"
elog "your bladerf with the following command:"
elog "bladeRF-cli -f /usr/share/Nuand/bladeRF/bladeRF_fw_v${PV}.img"
}
|