aboutsummaryrefslogtreecommitdiff
blob: 52587a95a364174410fe9eb8f2cc5fc541b04f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

[ "$PV" == "9999" ] && inherit git-r3

inherit toolchain-funcs

DESCRIPTION="De novo assembler using distribution of reads and insert size"
HOMEPAGE="https://github.com/bioinfomaticsCSU/EPGA"
if [ "$PV" == "9999" ]; then
	EGIT_REPO_URI="https://github.com/bioinfomaticsCSU/EPGA.git"
	KEYWORDS=""
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
}