mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 21:02:30 +01:00
29 lines
571 B
Bash
29 lines
571 B
Bash
# Copyright 1999-2023 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="GPS Spoofing tool for transmit capable SDR's like the HackRF, bladeRF and USRP"
|
|
HOMEPAGE="http://sdr.osmocom.org/trac/wiki/rtl-sdr"
|
|
SRC_URI=""
|
|
EGIT_REPO_URI="https://github.com/osqzss/gps-sdr-sim.git"
|
|
|
|
KEYWORDS=""
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install(){
|
|
dobin gps-sdr-sim-uhd.py
|
|
dobin gps-sdr-sim
|
|
|
|
insinto /usr/share/${PN}
|
|
doins {brdc0010.22n,*.csv,triumphv3.txt}
|
|
|
|
dodoc README.md
|
|
}
|