aboutsummaryrefslogtreecommitdiff
blob: f472163b910eaa7512b0135c1f142450d5199288 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

inherit eutils

DESCRIPTION="Show statistics of BAM/SAM (error profiles, nucleotide composition, base quals, len. distribution)"
HOMEPAGE="http://samstat.sourceforge.net"
SRC_URI="http://sourceforge.net/projects/samstat/files/samstat.tgz"

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

DEPEND=""
RDEPEND="${DEPEND}"

S="${WORKDIR}"/"${PN}"/src

src_compile(){
	emake
}

src_install(){
	dobin samstat
}