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

EAPI=6

DESCRIPTION="Genome scaffolding using cross-species synteny"
HOMEPAGE="http://www.sanger.ac.uk/science/tools/crossgenome"
SRC_URI="https://sourceforge.net/projects/phusion2/files/cross_genome/cross_genome.tar.gz -> ${P}.tar.gz"

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

S="${WORKDIR}"

src_prepare(){
	sed -e 's/^CC =/# CC =/' -i Makefile || die
	sed -e 's/^CFLAGS =/# CFLAGS =/' -i Makefile || die
	default
}

src_install(){
	# per upstream cross_genome.csh is not needed
	dobin cross_genome
	dodoc README
}