blob: 6609bc06f33933c7a7fb8ecdd1d711d654f44565 (
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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MY_PV="15-348"
DESCRIPTION="Demultiplex, trim 3'-adapter/polyA and filter short read DNA sequences"
HOMEPAGE="http://www.ebi.ac.uk/~stijn/reaper"
SRC_URI="http://www.ebi.ac.uk/~stijn/reaper/src/${PN}-${MY_PV}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="sys-libs/zlib"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/"${PN}"-"${MY_PV}"/src
src_prepare(){
sed -e 's/ -O3 / ${CFLAGS} /' -i Makefile || die
}
src_compile(){
emake
}
src_install(){
dobin reaper tally minion swan
dodoc ../doc/*.html
}
|