mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-03 12:10:50 +02:00
gr-mixalot: add corey's fork
This commit is contained in:
parent
3017d36fb6
commit
aa77fd4b32
1 changed files with 39 additions and 0 deletions
39
net-wireless/gr-mixalot/gr-mixalot-9999.ebuild
Normal file
39
net-wireless/gr-mixalot/gr-mixalot-9999.ebuild
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
inherit cmake python-single-r1 git-r3
|
||||
|
||||
DESCRIPTION="a set of GNU Radio blocks/utilities to encode pager messages"
|
||||
HOMEPAGE="https://github.com/ckoval7/gr-mixalot.git"
|
||||
EGIT_REPO_URI="https://github.com/ckoval7/gr-mixalot.git"
|
||||
|
||||
LICENSE="GPL-3 public-domain"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="${PYTHON_DEPS}
|
||||
=net-wireless/gnuradio-3.8*
|
||||
sci-libs/itpp:="
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
sed -i '/swig_lib_target/s/${CMAKE_INSTALL_PREFIX}\///' swig/CMakeLists.txt || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DPYTHON_EXECUTABLE="${PYTHON}"
|
||||
-DGR_PYTHON_DIR="$(python_get_sitedir)"
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
mv "${ED}"/usr/share/doc/{"${PN}","${PF}"} || die
|
||||
python_optimize
|
||||
}
|
||||
Loading…
Reference in a new issue