mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-18 23:39:00 -04:00
50 lines
863 B
Bash
50 lines
863 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake udev
|
|
|
|
DESCRIPTION="User mode driver for Airspy HF+"
|
|
HOMEPAGE="https://airspy.com/airspy-hf-plus/"
|
|
SRC_URI="https://github.com/airspy/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="udev"
|
|
|
|
DEPEND="dev-libs/libusb"
|
|
|
|
RDEPEND="${DEPEND}
|
|
udev? ( virtual/udev )
|
|
"
|
|
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/airspyhf-1.6.8-remove-static.patch"
|
|
)
|
|
|
|
src_prepare(){
|
|
sed -i "s@DESTINATION \"/etc/udev/rules.d\"@DESTINATION \"$(get_udevdir)/rules.d\"@" "tools/CMakeLists.txt" || die
|
|
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure(){
|
|
mycmakeargs+=(
|
|
-DINSTALL_UDEV_RULES=$(usex udev)
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
pkg_postinst(){
|
|
use udev && udev_reload
|
|
}
|
|
|
|
pkg_postrm(){
|
|
use udev && udev_reload
|
|
}
|