aboutsummaryrefslogtreecommitdiff
blob: ef0d862ef3a38162fca52b59f90ba1829497ec3f (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-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit multilib

DESCRIPTION="Analyze and trim single-end and paired-end reads, show quality statistics"
HOMEPAGE="https://sourceforge.net/projects/solexaqa"
SRC_URI="https://sourceforge.net/projects/solexaqa/files/src/SolexaQA++_v${PV}.zip"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"

DEPEND="
	sys-libs/zlib
	dev-libs/boost
"
BDEPEND="app-arch/unzip"
RDEPEND="${DEPEND}"

S="${WORKDIR}/source"

src_prepare() {
	default
	sed -i -e "s/\/lib/$(get_libdir)/g" -e "s/\/include/include\/boost/g" -e 's/-static//' makefile || die
}

src_install() {
	newbin SolexaQA++ "${PN}"
	einstalldocs
}