fosphor_knob: add hackrf_sweep

This commit is contained in:
Rick Farina (Zero_Chaos) 2021-10-20 14:06:59 -04:00
parent 4ef4df207b
commit fd5d65a076
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
2 changed files with 11 additions and 5 deletions

View file

@ -1 +1 @@
DIST fosphor_knob-0.10.tar.xz 176192 BLAKE2B eeee0e1f6efaf0cae4ed373c7ee52ebac3b5ff1457a3c36acfa6c31426eca27beac42baa622b184eaf864208c55b23f132dbfe9770bec4fb224a9933ae644dd9 SHA512 33d59d25baf758e92d7b5b5f73acf844c521e83d6c0d902235328dd339e2f4678ec83781d1d909268a894802629462496d778749043c344148f3f0adf49dd522
DIST fosphor_knob-0.11.tar.xz 177948 BLAKE2B ce9e5002ddf1a83bbb7e4d7841c2bd5368c27399deb3ffa90e2c736b4a33a7c90e621b7d7522a2e46872492d3f540215d20c09469ebfe67c296658e63b13aeeb SHA512 7e7c9867ade06635f7b11a0d6ea6c9d39d417b9e687fede15c2917a33e95f498bbe1ef9d049a56a5af9a56fbb4436e44f4ec24b185c843c28a2b8146fea7198c

View file

@ -1,10 +1,10 @@
# Copyright 2019-2020 Gentoo Authors
# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
DESCRIPTION="A visualization we use for the Wireless Village"
HOMEPAGE="http://wctf.ninja"
DESCRIPTION="A visualization we use for the RF Village"
HOMEPAGE="http://rfhackers.com"
SRC_URI="https://dev.pentoo.ch/~zero/distfiles/${P}.tar.xz"
#powermate.py is Apache 2, the rest is BSD
@ -26,6 +26,8 @@ PDEPEND="net-wireless/uhd:=
src_compile() {
grcc -o "${S}" fosphor_with_griffin_powermate_knob.grc || die
grcc -o "${S}" fosphor_with_griffin_powermate_knob_sponsors.grc || die
grcc -o "${S}" fosphor_with_griffin_powermate_knob_hackrf_sweep.grc || die
grcc -o "${S}" fosphor_with_griffin_powermate_knob_hackrf_sweep_sponsors.grc || die
}
src_install() {
@ -35,6 +37,10 @@ src_install() {
fperms +x /usr/share/${PN}/run.py
fperms +x /usr/share/${PN}/fosphor_knob.py
fperms +x /usr/share/${PN}/fosphor_knob_sponsors.py
fperms +x /usr/share/${PN}/fosphor_knob_hackrf_sweep.py
fperms +x /usr/share/${PN}/fosphor_knob_hackrf_sweep_sponsors.py
newbin fosphor_knob.sh fosphor_knob
dosym fosphor_knob /usr/bin/fosphor_knob_sponsors
dosym fosphor_knob /usr/bin/fosphor_knob_hackrf_sweep
dosym fosphor_knob /usr/bin/fosphor_knob_hackrf_sweep_sponsors
}