blob: 2b4acfc09068e6f5b47c955f71aeaf600107f67c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Illumina reads error corrector"
HOMEPAGE="http://www.genome.umd.edu/quorum.html"
SRC_URI="ftp://ftp.genome.umd.edu/pub/QuorUM/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=sci-biology/jellyfish-2.1.4"
RDEPEND="${DEPEND}"
src_configure(){
econf --enable-relative-paths --with-relative-jf-path
}
|