mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 13:51:00 +02:00
52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
HEX_PV=1.9.2
|
|
|
|
DISTUTILS_USE_SETUPTOOLS=bdepend
|
|
PYTHON_COMPAT=( python3_{6,7,8} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="The swiss army knife of subGHz"
|
|
HOMEPAGE="https://github.com/atlas0fd00m/rfcat.git"
|
|
|
|
SRC_URI="https://github.com/atlas0fd00m/rfcat/archive/v${PV}.tar.gz -> ${P}.tar.gz \
|
|
https://github.com/atlas0fd00m/rfcat/releases/download/v${HEX_PV}/RfCatChronosCCBootloader.hex -> RfCatChronosCCBootloader-${PV}.hex \
|
|
https://github.com/atlas0fd00m/rfcat/releases/download/v${HEX_PV}/RfCatDonsCCBootloader.hex -> RfCatDonsCCBootloader-${PV}.hex \
|
|
https://github.com/atlas0fd00m/rfcat/releases/download/v${HEX_PV}/RfCatYS1CCBootloader.hex -> RfCatYS1CCBootloader-${PV}.hex"
|
|
KEYWORDS="~amd64 ~amd64 ~x86"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
IUSE="gui"
|
|
|
|
DEPEND=">=dev-python/pyusb-1.0.0[${PYTHON_USEDEP}]
|
|
virtual/libusb:1
|
|
gui? ( >=dev-python/pyside2-5.12.0[${PYTHON_USEDEP}] )
|
|
>=dev-python/future-0.17.1[${PYTHON_USEDEP}]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
rm -r tests || die
|
|
distutils-r1_src_prepare
|
|
}
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
|
|
if [ "${PV}" != "9999" ]; then
|
|
insinto /usr/share/rfcat
|
|
doins "${DISTDIR}"/*.hex
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if [ "${PV}" = "9999" ]; then
|
|
ewarn "Right now, this only installs the rfcat host tools, nothing related to firmware"
|
|
else
|
|
einfo "Pre-compiled firmwares from upstream are installed in /usr/share/rfcat"
|
|
fi
|
|
}
|