Install this version:
emerge -a =sci-biology/epga-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sci-biology/epga-9999
Or alternatively:
emerge --autounmask-write -a =sci-biology/epga-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 7 | 0 |
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="De novo assembler using distribution of reads and insert size"
HOMEPAGE="https://github.com/bioinfomaticsCSU/EPGA"
if [ "$PV" == "9999" ]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bioinfomaticsCSU/EPGA.git"
else
SRC_URI=""
KEYWORDS=""
fi
LICENSE="GPL-3+"
SLOT="0"
DEPEND=""
RDEPEND="${DEPEND}"
src_compile(){
$(tc-getCXX) ${CFLAGS} main.cpp -o epga -lpthread
}
src_install(){
dobin epga
dodoc README.md
}