mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Decode, monitor, record and stream trunked mobile and related radio protocols"
|
|
HOMEPAGE="https://github.com/DSheirer/sdrtrunk"
|
|
SRC_URI="https://github.com/DSheirer/sdrtrunk/releases/download/v${PV}/sdr-trunk-linux-x86_64-v${PV}.zip"
|
|
|
|
KEYWORDS="amd64 x86"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
RDEPEND="virtual/jre:*
|
|
media-libs/alsa-lib
|
|
app-accessibility/at-spi2-core:2
|
|
dev-libs/glib:2
|
|
media-libs/fontconfig
|
|
media-libs/freetype
|
|
media-libs/libglvnd
|
|
media-video/ffmpeg
|
|
sys-libs/zlib
|
|
x11-libs/cairo
|
|
x11-libs/gdk-pixbuf:2
|
|
x11-libs/gtk+:2
|
|
x11-libs/gtk+:3
|
|
x11-libs/libX11
|
|
x11-libs/libXext
|
|
x11-libs/libXi
|
|
x11-libs/libXrender
|
|
x11-libs/libXtst
|
|
x11-libs/libXxf86vm
|
|
x11-libs/pango
|
|
!net-wireless/sdrtrunk
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="app-arch/unzip"
|
|
|
|
S="${WORKDIR}/sdr-trunk-linux-x86_64-v${PV}"
|
|
|
|
QA_PREBUILT="opt/sdrtrunk/bin/* opt/sdrtrunk/lib/*/* opt/sdrtrunk/lib/*"
|
|
|
|
QA_PRESTRIPPED="opt/sdrtrunk/lib/minimal/libjvm.so"
|
|
|
|
src_install() {
|
|
dodir /opt/sdrtrunk/
|
|
cp -R * "${ED}"/opt/sdrtrunk/
|
|
|
|
dosym "../../${EPREFIX}"/opt/sdrtrunk/bin/sdr-trunk /usr/bin/sdr-trunk
|
|
}
|