Merge pull request #2412 from pentoo/updates20250624

sdrtrunk-bin: prototype out 9999
This commit is contained in:
github-actions[bot] 2025-06-24 21:13:42 +00:00 committed by GitHub
commit cd6ce2893b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,9 +5,14 @@ EAPI=8
DESCRIPTION="Decode, monitor, record and stream trunked mobile and related radio protocols"
HOMEPAGE="https://github.com/DSheirer/sdrtrunk"
BPV="${PV/_/-}"
MY_PV="${BPV/beta/beta-}"
SRC_URI="https://github.com/DSheirer/sdrtrunk/releases/download/v${MY_PV}/sdr-trunk-linux-x86_64-v${MY_PV}.zip"
if [ "${PV}" = "9999" ]; then
MY_PV="nightly"
SRC_URI="https://github.com/DSheirer/sdrtrunk/releases/download/${MY_PV}/sdr-trunk-linux-x86_64-v${MY_PV}.zip"
else
BPV="${PV/_/-}"
MY_PV="${BPV/beta/beta-}"
SRC_URI="https://github.com/DSheirer/sdrtrunk/releases/download/v${MY_PV}/sdr-trunk-linux-x86_64-v${MY_PV}.zip"
fi
KEYWORDS="amd64 x86"
LICENSE="GPL-3"