Added live ebuild for csdr

This commit is contained in:
root 2020-03-04 14:47:57 +00:00
parent 3b2dfe4e17
commit 786b7f0ffb
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1 @@
EBUILD csdr-9999.ebuild 535 BLAKE2B f06f03d11d7fe72b37d267c326b44c1300932cd53aff179bd3633e82e086c0d2e812467bc97562a6120670aad164b08926fc66cb3da0aa2428621ee19422a82c SHA512 45dd104d15e45f53593dcbbc468ba161a6d54a5f69925a4fb63ac31057609d7ef012bdf859c87cdde283de616b2fea0567cb9d95be2a6f30d3e1950d4ba65138

View File

@ -0,0 +1,30 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=7
inherit eutils git-r3
DESCRIPTION="A simple DSP library and command-line tool for Software Defined Radio."
HOMEPAGE="https://github.com/ha7ilm/csdr"
EGIT_REPO_URI="https://github.com/ha7ilm/csdr.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
fftw? ( sci-libs/fftw:3.0 )
"
RDEPEND="${DEPEND}"
IUSE="+fftw"
src_install() {
dolib.so libcsdr.so.*
dobin csdr
dobin csdr-fm
dobin nmux
}