blob: 2ce3ff34f356a66ca514058254070deaa9ebdf4c (
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
34
35
36
37
38
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit toolchain-funcs
DESCRIPTION="Burrows-Wheeler Alignment Tool, a fast short genomic sequence aligner"
HOMEPAGE="http://bio-bwa.sourceforge.net/"
SRC_URI="mirror://sourceforge/bio-bwa/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86 ~x64-macos"
RDEPEND="dev-lang/perl"
PATCHES=(
"${FILESDIR}"/${P}-Makefile.patch
)
src_prepare() {
default
tc-export CC AR
}
src_install() {
dobin bwa
doman bwa.1
exeinto /usr/libexec/${PN}
doexe qualfa2fq.pl xa2multi.pl
dodoc NEWS.md README-alt.md README.md
}
|