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

EAPI=5

inherit eutils

DESCRIPTION="A Modular, Open-Source whole genome assembler with defaults for short reads"
HOMEPAGE="http://amos.sourceforge.net/"
SRC_URI="http://sourceforge.net/projects/amos/files/short_read_assembly/${PV}/AMOS-short.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""

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

S="${WORKDIR}"/AMOS

src_prepare() {
	epatch "${FILESDIR}"/amos-2.0.8-gcc44.patch
}

src_compile() {
	emake -j1
}

src_install() {
	emake DESTDIR="${D}" install
}